gpt4 book ai didi

php - woeid 使用 tmhoauth 获取 twitter 趋势

转载 作者:行者123 更新时间:2023-12-04 04:57:31 25 4
gpt4 key购买 nike

我正在使用 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;
}

最佳答案

尝试删除 https://api.twitter.com/从网址。我也得到了 404,直到我删除了 URL 的那一段,现在得到了 200 响应代码。

关于php - woeid 使用 tmhoauth 获取 twitter 趋势,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16584877/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com