我想通过应用程序在Facebook上发布给定个人资料的链接。使用access_token和其他必要参数发布到https://graph.facebook.com/PROFILE_ID/links。 出于测试目的,我使用Graph API Explorer获取了access_token,并获得了publish_stream和share_item扩展权限。
然后我收到了错误
{
"error": {
"message": "An access token is required to request this resource.",
"type": "OAuthException",
"code": 104
}
}
我为PROFILE_ID尝试了fb_id和fb_username但得到了同样的错误。哪里不对了?
由于
答案 0 :(得分:1)
是。 /links
是只读的。要创建链接,您需要POST到/USER_ID/feed
。
https://developers.facebook.com/docs/reference/api/user/#links