我想在我的墙上发布状态。但是代码正在获取我的所有PAGES。我希望它发布在我的Facebook墙上,而不是在我的网页上。我该怎么办?这是我的代码。
$graph_url_pages = "https://graph.facebook.com/me/accounts?access_token=".$_SESSION['token'];
$pages = json_decode(file_get_contents($graph_url_pages)); // get all pages information from above url.
$dropdown = "";
for($i=0;$i<count($pages->data);$i++)
{
$dropdown .= "<option value='".$pages->data[$i]->access_token."-".$pages->data[$i]->id."'>".$pages->data[$i]->name."</option>";
}
答案 0 :(得分:0)
这是发布到用户墙的API调用:/me/feed
详细信息和示例代码可在文档中找到:
https://developers.facebook.com/docs/graph-api/reference/user/feed#publish