PHP Facebook API:如何检索我与某人成为朋友的时间
我很好奇是否可以通过 Facebook PHP API 获取“友谊”信息,即有关登录用户和他的一位朋友分享的友谊信息?
此页面上可见的信息:
https://www.facebook.com/profile.php?id=[YOUR ID]&and=[YOUR FRIENDS' ID]
这可能吗?
I'm curious if it's possible to get the "friendship" information via the Facebook PHP API, meaning information about the friendship the logged in user and one of his friends share?
Information that is visible on this page:
https://www.facebook.com/profile.php?id=[YOUR ID]&and=[YOUR FRIENDS' ID]
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过 Graph API,您可以查询
/me
对象。您需要relationship_status
和significant_other
这两个属性。我没有看到它在哪里指定“多长时间”部分。既不是来自 Graph API,也不是来自 FQL。另请参阅图中的
me/family
。Via the Graph API you can query the
/me
object. Two properties you will wantrelationship_status
andsignificant_other
. I don't see where it specifies the "how long" part. Not from the Graph API nor from FQL.Also see
me/family
in the graph.