I'm trying to use the Facebook Graph API to update a news feed post made on behalf of a user with a comment made by the same user. The user has granted me publish_actions, publish_stream and read_stream permissions and extended permissions.
I can do it by passing message and access_token only in the api explorer. When I try that on my server I get the following error:
{ error:
{ message: '(#100) Invalid fbid.',
type: 'OAuthException',
code: 100 } }
This old question suggested that offline_access is needed to make this work.
http://facebook.stackoverflow.com/questions/4877847/publishing-comments-on-my-facebook-app-profil
Now offline_access is deprecated and not an option for new apps, is it possible to publish comments on a user's news feed as suggested by the documentation?