$data = file_get_contents("https://graph.facebook.com/124292684247609/feed?access_token=MY TOKEN");
$data = json_decode($data, true);
print_r($data);
这是我尝试的代码,因为没有其他人工作。但这没有,但仍然没有给我带来重大错误。但由于某些原因,它不会发布Facebook帖子。
如何发布facebook群组状态/帖子?
编辑:我根本无法使用该阵列
答案 0 :(得分:0)
$data = file_get_contents("https://graph.facebook.com/(Page-Id)/feed?message=Hello&access_token=MY TOKEN");
$data = json_decode($data, true);
print_r($data);
你可以像这样轻松发帖。
您需要权限publish_action,manage_pages;
答案 1 :(得分:-1)
$posts = $data->data;
foreach ($posts as $post) {
if (isset($post->id)) {
$post->id;
$message = (isset($post->message) ? mysql_real_escape_string($post->message) : '');
echo $post_id.' '.$message;
}
}