2012-10-29 29 views
3

我需要你的幫助。 我正在使用Zend_Service_Yahoo遇到問題。 我想使用Zend_Service_Yahoo。但它表明Zend_Service_Yahoo顯示發送請求錯誤。狀態碼:404

「發生錯誤發送請求狀態代碼:404

$yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID"); 

    try{ 

      $results = $yahoo->imageSearch('PHP'); 

      foreach ($results as $result) { 
       echo $result->Title . '<br />'; 
      } 

     }catch(Exception $e){ 

      echo $e->getMessage(); 

     } 

參考:http://framework.zend.com/manual/1.0/en/zend.service.yahoo.html

在此先感謝

回答

1

這是因爲圖片搜索has been deprecated

我們在2011年4月關閉此服務。有關詳細信息,請參閱已棄用服務博客文章。

相關問題