2011-06-16 144 views
1

我想做一個在Google上搜索的自定義程序,我看到有API來做這些查詢,但Google問我一個「網站」,我沒有網站,我只想在Google上搜索通過我正在開發的PHP(PHP_CLI)程序。如何使用Google API進行搜索?

如何使用這些API?

+0

如何在生成API密鑰時使用'localhost'? – 2011-06-16 08:27:30

+0

好的,但我不想使用網頁...有可能使用命令行應用程序執行查詢嗎? – Dail 2011-06-16 10:18:29

+0

您閱讀的API文檔的鏈接是什麼? – Arvin 2011-06-16 12:29:09

回答

0

不確定您的意思,如果您想將Google搜索添加到HTML頁面中,爲什麼不創建一個表單,其中的操作指向Google搜索?

<form method="get" action="http://www.google.com/search"> 
    <input type="text" name="q" size="31" maxlength="255" value="" /> 
    <input type="submit" value="Google Search" /> 
    <input type="radio" name="sitesearch" value="" />The Web 
    <input type="radio" name="sitesearch" value="yourdomain.com" checked /> My Site 
</form> 

閱讀:http://www.askdavetaylor.com/how_can_i_add_a_google_search_box_to_my_web_site.html

是你在問什麼?

+0

不,我必須使用API​​(舊的SOAP)做這些查詢...當我讀取Google答案與JSON流。沒有? – Dail 2011-06-16 09:24:58

相關問題