Facebook Open Graph API returns: (#200) Requires extended permission: publish_actions

前端 未结 2 1342
夕颜
夕颜 2021-01-22 19:17

I am trying to publish actions to a user\'s wall using the Open Graph API.

I requested the \'publish_actions\' permission, enabled the \'Enhanced Auth Dialog\', my role

2条回答
  •  鱼传尺愫
    2021-01-22 20:14

    Probably $app_id is not the id of user owning the access_token.

    You better use /me/liveluvcreate:viewabc just to be sure you publishing action to user owning access_token and who have publish_actions granted to your app.

    $facebook->api('/me/liveluvcreate:viewabc', 'post', $data);
    

提交回复
热议问题