我正在做一个原生的ios应用程序,我根据用户输入以编程方式在facebook上发帖子。我能够发布,也可以获得帖子ID。现在我想了解这篇帖子为未来的操作所获得的喜欢,评论和分享的详细信息。我用我/ feed方法在facebook上发帖。我在这个问题上是为了3天。任何一点帮助都会有用。
答案 0 :(得分: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];