2
我想使用Twitter趨勢,但不限於最近十個趨勢。但是我不明白這個API。如何使用auh與Twitter趨勢
我的基本代碼是...
$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的應用程序,我看到...
簽名基本字符串... Authorization頭...... cURL命令。 ..
與
請求類型:GET請求URI:https://api.twitter.com/1/
但是如何處理呢?
感謝,
五
Thanks Mob。我認爲有十多個認證結果。 「只有10個趨勢」,我是一個屁股。 :) – Vincent