Facebook:获得所有“赞”对于特定页面
我目前正在计划在我们的网站上集成 Facebook。在入门页面 (http://developers.facebook.com/docs/opengraph) 给出的示例中,您可以看到我喜欢 Imdb 上的“The Rock”。如果我是 Imdb,是否可以查询用户对象来获取 Imdb 上的所有点赞?例如,他们是否可以建立一个类似“这些是您在我们网站上点击“喜欢”按钮的电影”的页面?
谢谢您的回答!
I am currently planning a facebook integration on our website. In the example given at the Getting Started page (http://developers.facebook.com/docs/opengraph), you can see that I like "The Rock" on Imdb. If I were Imdb, would it be possible to query the user object to get all likes on Imdb? For example would it be possible for them to build a page like "these are the films where you clicked the like button on our website"?
Thank you for your answer!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获得页面的点赞,您需要执行以下操作:
使用 http://graph.facebook.com/
默认情况下,这将返回一个 JSON 对象。只需夺取它的
likes
属性即可。例如 http://graph.facebook.com/wearex3
但是您所要求的要求您请求访问权限到用户的数据并从那里获得所有的喜欢。
http://developers.facebook.com/docs/opengraph 和 http://developers.facebook.com/docs/guides/web 是您想要阅读的内容。
To get the likes for a page you need to do this:
use http://graph.facebook.com/
this will return a JSON object be default. Just snatch the
likes
property off it.http://graph.facebook.com/wearex3 for example
But what you are asking requires you to request access to the user's data and from there get all the likes.
http://developers.facebook.com/docs/opengraph and http://developers.facebook.com/docs/guides/web are what you want to read.