java 谷歌自定义搜索API
我正在尝试使用 Java 客户端Google 自定义搜索 API 但在网上找不到任何示例教程。有人可以提供一个简单的例子让我开始吗?谢谢你!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在尝试使用 Java 客户端Google 自定义搜索 API 但在网上找不到任何示例教程。有人可以提供一个简单的例子让我开始吗?谢谢你!
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
以下示例基于 1- 1.30 客户端库。由于没有太多文档,这绝对不是最好的例子。事实上,我故意使用一种已弃用的方法来设置 API 密钥,因为较新的方法似乎过于复杂。
假设您已在项目的构建路径中包含正确的 jar 依赖项,一个基本示例是:
您需要从 Google API 控制台
The following example is based on the 1-1.30 client lib. As there isn't much documentation this is definitely not the best example. In fact I'm intentionally using a deprecated method to set the API key as the newer way seemed overly complex.
Assuming you have included the correct jar dependencies in your project's build path, a basic example would be:
You'll need to get a custom search engine id, and an API key from the Google API Console
这是一个关于如何创建 Google 自定义搜索引擎并从 Java 程序使用它的简单演示 http:// Precisionconcise.com/apis_and_installations/search_google_programmatically.php
Here is a simple demo on how to create a google custom search engine and use it from a java program http://preciselyconcise.com/apis_and_installations/search_google_programmatically.php
尝试 Google REST / JSON api:请参阅 API 指南。只要您有引擎 ID 和密钥,使用它就非常容易。您所要做的就是正确构建 URL 并使用您选择的库从响应 JSON 中解析搜索结果。
Try Google REST / JSON api: see API Guide. It is very easy to work with it, as long as you have your engine id and key. All you have to do is properly construct the URL and parse the search results out of response JSON using a library of your choice.
我想在这里更正一下。
不适用于客户端库 1.6,但以下内容确实有效
I want to make a correction here.
does not work for client lib 1.6 but following does work