gpt4 book ai didi

java - 如何在 Java 中使用必应搜索 API

转载 作者:搜寻专家 更新时间:2023-11-01 01:54:53 25 4
gpt4 key购买 nike

我需要从必应中提取搜索结果。是否有任何可用的 Java 代码来实现此目的?

最佳答案

This MSDN forum thread有很多答案和例子。

此外,当您在 Azure 上购买或订阅数据集时,他们有一个 Java 示例。这是一个例子

Go to the odata4j site and download the latest release.

Add odata4j-clientbundle-x.x.jar to your Java build path.

You can use the following code to call the service.

ODataConsumer c = ODataConsumers
.newBuilder("https://api.datamarket.azure.com/Data.ashx/Bing/Search/v1/")
.setClientBehaviors(OClientBehaviors.basicAuth("accountKey", "{your account key here}"))
.build();

OQueryRequest<OEntity> oRequest = c.getEntities("Web")
.custom("Query", "stackoverflow bing api");

Enumerable<OEntity> entities = oRequest.execute();

关于java - 如何在 Java 中使用必应搜索 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12648847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com