我正在尝试使用考拉获取我的脸谱资料中的所有帖子。我使用以下方法 -
feed = graph.get_connections(“我”,“Feed”)
但是这个方法返回一个哈希数组,其元素是 -
{“updated_time”=>“一段时间”,“is_hidden”=> false,“story”=>“某人 还有10个人在你的时间轴上写道。“,”from“=> {”id“=>”some id“, “name”=>“some name”},“id”=>“some id”,“privacy”=> {“deny”=>“”, “value”=>“”,“friends”=>“”,“description”=>“”,“allow”=>“”}, “type”=>“status”,“created_time”=>“一段时间”, “status_type”=> “中wall_post”}
在这种情况下的问题是我无法在时间轴上检索单个帖子。
哈希中存在“故事”,但没有“消息”。我预计数组中将有11个元素作为11个朋友在时间轴上发布。
我可以从中检索任何其他方法吗?此外,这是普通的ruby程序,没有任何rails集成。
谢谢!
答案 0 :(得分:1)
而不是'get_connections',请执行:
graph.get_object("me/feed?fields=message")
获取Feed中的消息。