Function getHTTPPage(url,charcode)
dim objXML
'set objXML=createobject("MSXML2.SERVERXMLHTTP.3.0") '調(diào)用XMLHTTP組件,測試空間是否支持XMLHTTP
set objXML=createobject("Microsoft.XMLHTTP")
objXML.open "GET",url,false 'false表示以同步的方式獲取網(wǎng)頁代碼,了解什么是同步?什么是異步?
objXML.send() '發(fā)送
getHTTPPage=bBytesToBstr(objXML.responseBody,charcode)'返回信息,同時(shí)用函數(shù)定義編碼
set objXML=nothing'關(guān)閉
End Function
Function bBytesToBstr(body,charcode)
dim objstream
set objstream = CreateObject("adodb.stream") '//調(diào)用adodb.stream組件
objstream.Type = 1
objstream.Mode =3
objstream.Open
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.Charset = charcode '轉(zhuǎn)換原來默認(rèn)的UTF-8編碼轉(zhuǎn)換成GB2312編碼,否則直接用XMLHTTP調(diào)用有中文字符的網(wǎng)頁得到的將是亂碼
bBytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
end Function
通過使用這個抓取函數(shù),谷歌的收錄數(shù)據(jù)、排名數(shù)據(jù)都可以正常獲取了,從而解決了這個BUG。
方維站長工具正在一步步完善,而且源代碼全部開源,只希望保留版權(quán)信息。