Facebook 标签提要 PHP cURL
Facebook Hashtag feed PHP cURL
如何使用 Facebook Graph API 获取 Facebook 主题标签提要?我想获取特定#HashTag 的所有帖子。
我尝试了以下代码:
<?php
$keyword = '#TagName';
$graph_url = "https://graph.facebook.com/search?type=post&access_token=xxx&q=$keyword";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $graph_url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
var_dump($result);
?>
但它 returns 一个错误 :
string(82) "{" error":{"message":"No node specified","type":"GraphMethodException","code":100}}"
已授予权限:read_stream
有什么解决办法吗?谢谢
您无法使用 API 检索主题标签供稿,除非您使用的是 Facebook 趋势 API(您将无法访问)
https://developers.facebook.com/docs/graph-api/reference/v2.3/hashtag
如何使用 Facebook Graph API 获取 Facebook 主题标签提要?我想获取特定#HashTag 的所有帖子。
我尝试了以下代码:
<?php
$keyword = '#TagName';
$graph_url = "https://graph.facebook.com/search?type=post&access_token=xxx&q=$keyword";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $graph_url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
var_dump($result);
?>
但它 returns 一个错误 :
string(82) "{" error":{"message":"No node specified","type":"GraphMethodException","code":100}}"
已授予权限:read_stream
有什么解决办法吗?谢谢
您无法使用 API 检索主题标签供稿,除非您使用的是 Facebook 趋势 API(您将无法访问)
https://developers.facebook.com/docs/graph-api/reference/v2.3/hashtag