关键字搜索有助于向我提供所有最近的Feed。 我找到了图api - search
https://developers.facebook.com/docs/reference/api/examples/
但我不知道使用它们! 我试过的只是
$ keyword = $ _POST ['keyword'];
$graph_url = "https://graph.facebook.com/search?";
$graph_url .= "&type=post";
$graph_url .= "&q=$keyword";
$results = file_get_contents( $graph_url );
$json = json_decode($results);
foreach($json->data as $show ) {
echo $show->from->name . "<br />";
echo $show->message . "<br />";
echo $show->created_time . "<br />";
echo "<hr>";
}
Stilll我得到的错误就像是 警告:无法打开流:HTTP请求失败! HTTP / 1.0 403禁止