如何使用Twitter与Twitter趋势

时间:2011-11-14 10:13:47

标签: php twitter twitter-oauth

我想使用Twitter趋势,但不限于最近十大趋势。但是我不懂API。

我的基本代码是......

$woeid = 2459115;
$json = file_get_contents("https://api.twitter.com/1/trends/".$woeid.".json", true);
$decode = json_decode($json, false);
$data = $decode[0]->trends; 
foreach ($data as $item) {
...
}

当我使用Twitter创建应用时,我看到......

签名基本字符串...授权标题... cURL命令...

请求类型:GET请求URI:https://api.twitter.com/1/

但是如何处理这个?

谢谢,

1 个答案:

答案 0 :(得分:1)

不,API本身会返回仅10个趋势。它不需要创建应用程序或身份验证以返回更多趋势,趋势API是公开的。

https://dev.twitter.com/docs/api/1/get/trends/%3Awoeid
如果特定的WOEID可用,则返回特定WOEID的前10个趋势主题。

编辑:是的,你的代码是正确的。