我如何在 Facebook graph API v2 中获得类似的状态
How I get the state of the like in Facebook graph API v2
我在以下过程中得到 object_id。
/v2.2/me/home?fields=id,附件
object_id 是 returns ["id"] 或 ["attachments"] ["data"] [0] ["target"] ["id"]
我收到 like_count 以下请求。
/v2.2/{object_id}/likes?summary=true
like_count 是摘要中找到的 total_count。
而且,我想知道用户是否已经喜欢了。
因为,当我请求类似的时候,我不知道我应该使用哪个 post 或删除
我可以使用 FQL。
请告诉我如何在不使用 FQL 的情况下获得类似的状态?
有没有比通过请求 limit=200 查找名称更优雅的方法?
"specific post" the user's friends posted
这是你问题的主要部分。无法获取用户好友的帖子。您需要 read_stream 权限才能在用户流中获取好友帖子。但是你永远不会得到 Facebook 的 read_stream 批准。有关详细信息,请参阅此 link:https://developers.facebook.com/docs/facebook-login/permissions/v2.2#reference-read_stream
...这意味着,您当然无法在这些帖子上获得赞。
我在以下过程中得到 object_id。
/v2.2/me/home?fields=id,附件
object_id 是 returns ["id"] 或 ["attachments"] ["data"] [0] ["target"] ["id"]
我收到 like_count 以下请求。
/v2.2/{object_id}/likes?summary=true
like_count 是摘要中找到的 total_count。
而且,我想知道用户是否已经喜欢了。 因为,当我请求类似的时候,我不知道我应该使用哪个 post 或删除
我可以使用 FQL。 请告诉我如何在不使用 FQL 的情况下获得类似的状态? 有没有比通过请求 limit=200 查找名称更优雅的方法?
"specific post" the user's friends posted
这是你问题的主要部分。无法获取用户好友的帖子。您需要 read_stream 权限才能在用户流中获取好友帖子。但是你永远不会得到 Facebook 的 read_stream 批准。有关详细信息,请参阅此 link:https://developers.facebook.com/docs/facebook-login/permissions/v2.2#reference-read_stream
...这意味着,您当然无法在这些帖子上获得赞。