Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wanted to publish a link on the given profile on Facebook via the app. Post to https://graph.facebook.com/PROFILE_ID/links with access_token and other necessary parameters. For testing purpose, I got the access_token with Graph API Explorer and had the publish_stream and share_item extended permission.

Then I got the error

{
   "error": {
      "message": "An access token is required to request this resource.",
      "type": "OAuthException",
      "code": 104
   }
}

I tried fb_id and fb_username for the PROFILE_ID but got the same error. Anything wrong?

Thanks

share|improve this question

1 Answer

Yes. /links is read only. To create a link, you need to POST to /USER_ID/feed.

https://developers.facebook.com/docs/reference/api/user/#links

share|improve this answer
1  
It would be good to mention that in few weeks this would be possible only if user_id is the current user. – Alexander Nenkov Feb 1 at 12:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.