我可以在我自己的网站上显示我自己的 facebook 墙帖(仅最后 4 个帖子),但我想显示我管理的粉丝页面的最后 x 个墙帖?如何从我的页面获取墙贴?
我是这个页面的粉丝,但我如何使用 stream_get 来获取墙帖?
我可以在我自己的网站上显示我自己的 facebook 墙帖(仅最后 4 个帖子),但我想显示我管理的粉丝页面的最后 x 个墙帖?如何从我的页面获取墙贴?
我是这个页面的粉丝,但我如何使用 stream_get 来获取墙帖?
只要帖子是公开的,您就可以使用PAGE_ID/posts
应用程序访问它access_token
$access_token = '1111111111|2Cha_1-n5'
$graph_url = "https://graph.facebook.com/Boo/posts?access_token="
. $access_token;
$page_posts = json_decode(file_get_contents($graph_url), true);
或者使用 PHP SDK 和页面访问令牌,您可以执行类似的操作
$facebook = new Facebook(array(
'appId' => "YOUR_APP_ID_HERE",
'secret' => "YOUR_APP_SECRET_HERE",
));
// Get User ID
$user = $facebook->getUser();
if ($user) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
$user_posts = $facebook->api('me/posts');
}
对应me
页面的位置
然后可以分页使用next和previous参数来获取页面的所有帖子