2012-07-31 72 views

回答

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的響應。

如果您編輯您的帖子以提供更多詳細信息,我可以提供更具體的幫助。