0

我正在尝试根据要在 google 中搜索的 a、b 和 c 列运行搜索,并将前两个 url 复制到 d 和 e 列的同一张表中。

会有 ve 可变行,但列将是固定的。

有什么帮助吗?

4

2 回答 2

0

https://developers.google.com/custom-search/v1/overview

要使用 API,请启动 GET 请求,如下所示:

Set objHTTP = CreateObject("MSXML2.ServerXMLHTTP")
   URL = "http://www.google.com/whatever_the_api_tells_you_to_use"
   objHTTP.Open "GET", URL, False
   objHTTP.setRequestHeader "User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)"
   objHTTP.send ("")

对于来自 API 的响应,访问objHTTP.responseText.

如果您编辑帖子以提供更多详细信息,我可以提供更具体的帮助。

于 2012-07-31T23:46:46.717 回答