0

我正在做一个本机 ios 应用程序,在该应用程序中,我根据用户输入以编程方式在 facebook 上发帖。我可以发帖,也可以获取帖子ID。现在我想获取帖子为未来操作而获得的喜欢、评论和分享的详细信息。我正在使用 me/feed 方法在 facebook 上发帖。我在这个问题上待了 3 天。任何一点帮助都会很有用。

4

1 回答 1

0

如果您想获得喜欢的数量,可以使用以下代码可能会对您有所帮助。只需对 Graph API 做一个简单的 url 请求:

http://graph.facebook.com/[FULL URL]

Example:
http://graph.facebook.com/http://www.stackoverflow.com

Edit: (an example with "LIKES")
http://graph.facebook.com/http://www.imdb.com/title/tt0117500/

Example :  http://graph.facebook.com/http://www.imdb.com/title/tt0117500/

或者只需使用 FB 对象调用一个新请求:

[facebook requestWithGraphPath:@"PHOTO_ID/likes"];

Replace PHOTO_ID with the Facebook ID of the photo you're interested in. This call will return an array with all like information for that photo.

In the -facebook requestDidLoad: method, just get the count of that array to return the number of likes.

NSInteger likeCount = [result count];
于 2013-07-24T12:33:37.387 回答