我可以使用Graph API资源管理器获取所有帖子(我的个人资料供稿)吗?
我尝试使用https://graph.facebook.com/ / posts?limit = 500
但它似乎没有给我一切(甚至增加限制不起作用) 意味着只给出预定数量的帖子。
当我加入Facebook时,有没有办法让我收到所有帖子(因为我可以通过在我的墙上向下滚动来获取它们,这意味着Facebook存储了它们)。
提前致谢
答案 0 :(得分:4)
获取访问令牌
http://developers.facebook.com/tools/explorer
然后
https://graph.facebook.com/YOUR_ID/feed?access_token=FACEBOOK_ACCESS_TOKEN
这篇文章也可能有所帮助:
How to show facebook feed messages from my site without access_token?
答案 1 :(得分:0)
您不需要访问令牌!
$url = 'url_pulled_from_database';
$url = str_replace('http://www.', 'http://graph.', $url);
$get_id = file_get_contents($url);
$get_id = json_decode($get_id, true);
$fbID = $get_id['id'];
//THEN CALL THE FUNCTION
fb_parse_feed($fbID, $maxnumber);
我不能理解fb_parse_feed函数,但你可以在这里找到它 https://gist.github.com/banago/3864515