Reputation: 1918
I'm getting this weird Facebook PHP SDK error just with some of the users of my app.
This is the array of permissions I am requiring to the users:
['email', 'publish_stream', 'manage_pages', 'read_insights', 'status_update']
My app publish content on the Facebook pages of my users, using an extended access token for different weeks.
Since I've updated to the Facebook SDK v4 few weeks back, some of the users are getting this error:
"The user hasn't authorized the application to perform this action."
Do you have any idea why this could be happening?
Thanks
Upvotes: 0
Views: 182
Reputation: 4908
You should use publish_actions instead of publish_stream. publish_stream have been deprecated for years
Upvotes: 1