2013-05-16 89 views
2

我使用tmhoauth庫來構建一個小型的twitter應用程序演示。一切工作正常,如檢索鳴叫,進行搜索等。但是,當我嘗試使用woeid檢索熱門話題時,我得到一個404 - 此頁面不存在錯誤。我曾嘗試過不同的世界。使用tmhoauth獲取twitter趨勢woooooo

如果有人能指出我做錯了什麼,我將不勝感激。

這是我的代碼。

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; 
    } 

回答

3

嘗試從URL中刪除https://api.twitter.com/。我得到了一個404,直到我刪除了這個網段,現在我得到了200個響應代碼。

+0

完美的作品!感謝邁克......以爲這永遠不會被回答:P可悲的是,我沒有足夠的聲望來投票回答你的答案。再次感謝 ! – user2115154

+0

也爲我工作......他們已經在lib中預先定義了** host **。 – VKGS