我正在使用tmhoauth库来构建一个小型 twitter 应用程序演示。一切正常,例如检索推文、进行搜索等。但是当我尝试使用 woeid 检索热门主题时,我收到 404 - 此页面不存在错误。我尝试过不同的woeids'。
如果有人能指出我做错了什么,我将不胜感激。
这是我的代码。
public function trends1(){
require 'tmhOAuth.php';
require 'tmhUtilities.php';
$tmhOAuth = new tmhOAuth(array(
'consumer_key' => $this->consumerkey,
'consumer_secret' => $this->consumersecret,
'user_token' => $this->accesstoken,
'user_secret' => $this->accesstokensecret,
'curl_ssl_verifypeer' => false
));
$args = array('id' => '23424975');
$code = $tmhOAuth->request("GET", $tmhOAuth->url("https://api.twitter.com/1.1/trends/place.json"), $args);
print $code;
$res = $tmhOAuth->response['response'];
$trends = json_decode($res, true);
return $trends;
}