我正在尝试根据facebook帖子获得回复。一个示例是用户发布状态问题,另一个用户回复该状态。
到目前为止,我可以使用以下网址并获取json https://graph.facebook.com/search?q=what&type=post
,但此处我只获取状态,并且没有选项来捕获它的回复。
以下是我执行时的结果,但是当您再次执行时,您将获得不同的结果集,但我无法跟进任何给定的ID。
id: "1512134078_2118135082256",
from: {
name: "Gracie Armijo",
id: "1512134078"
},
message: "What is going on with the Comedy Central Roast. Is there a curse? I work on the David Hasselhoff. After that Greg Giraldo was gone. Then I worked the Charlie Sheen roast and now Patrice O'neal. He was so upset with all the remarks that was said about him too. RIP Patrice..",
type: "status",
created_time: "2011-11-29T21:11:53+0000",
updated_time: "2011-11-29T21:11:53+0000"
我希望根据id我可以查找此消息的所有回复。但到目前为止,我还没能做到这一点。