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

前端 未结 2 1341
夕颜
夕颜 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);
    
    0 讨论(0)
  • 2021-01-22 20:15

    I know it might be very late to post an answer[but it might be helpful to others], but as of 2014 if you want to post anything to the user[apart from the app registered developer] timeline you need Facebook permission i.e the app needs to be submitted for approval Please refer the following link https://developers.facebook.com/docs/facebook-login/permissions/v2.0

    you can check that it's right below the overview section.

    0 讨论(0)
提交回复
热议问题