我想做一个在谷歌上搜索的自定义程序,我看了有API来做查询,但谷歌问我一个“网站”,我没有网站,我只想搜索Google正在开发一个用PHP开发的程序(PHP_CLI)。
我如何使用这些API?
答案 0 :(得分: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
这就是你问的问题吗?