是否可以通过 API 点赞 Facebook 页面?
是否可以通过 Open Graph API 点赞 Facebook 页面?
也许 POST 到“http://graph.facebook.com/#{FB_PAGE_ID}/likes ???
这是我在 API 中能找到的关于创建 LIKE 的唯一内容:
/POST_ID/likes 就像给定的帖子 none
Is it possible to LIKE a Facebook Page via the Open Graph API?
Maybe POST to "http://graph.facebook.com/#{FB_PAGE_ID}/likes ???
This is the only thing I could find in the API about creating a LIKE:
/POST_ID/likes like the given post none
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
事实上,这是不可能的。您不能喜欢页面。检查一下:使用 Facebook Graph API“赞”页面。我必须使用一个网站来做一个页面。
我总是遇到的错误与权限白名单有关。看来这个特定的功能只适用于特定的应用程序。
在我的脑海中,我认为您可以使用 javascrip sdk 获得边缘创建通知,您可以将其用作添加 Facebook 页面的回调
Actually, it's not possible. You can not like pages. Check this: 'Like' a page using Facebook Graph API . I had to use a website to do like a page.
The error I always got was something about permission whitelist. It seems that this specific function is only available for specific apps.
At the top of my head, I think you can get a edge create notification with the javascrip sdk that you can use as callback for adding a fb page
你是对的。您需要检索页面/照片/帖子/等的唯一标识符。如果您想点赞,请向
https://graph.facebook.com//likes
发出 POST 请求。请查看 Facebook 开发者文档的此页面,位于“发布”副标题下。
You are correct. You need to retrieve the unique identifier of the page/photo/post/etc. you wish to like, then make a POST request to
https://graph.facebook.com/<IDENTIFIER>/likes
.Check out this page of the Facebook Developers documentation, under the subheading "Publishing".