9922250 发表于 2012-6-30 19:00:12

淘宝没返回数据,GET错误了,求帮忙

$oHTTP = ObjCreate("microsoft.xmlhttp")
$oHTTP.open("get", "http://detail.tmall.com/item.htm?id=13620534478", False)
$oHTTP.send()
$source1 = $oHTTP.responsetext
MsgBox(0,0,$source1)

ebhb 发表于 2012-7-1 11:46:22

这样就可以了。
$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
$oHTTP.open("POST", "http://detail.tmall.com/item.htm?id=13620534478", False)
$oHTTP.send("")
$source1 = $oHTTP.responsetext
MsgBox(0,0,$source1)

ebhb 发表于 2012-7-1 11:47:11

这样也行
$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
$oHTTP.open("GET", "http://detail.tmall.com/item.htm?id=13620534478", False)
$oHTTP.send()
$source1 = $oHTTP.responsetext
MsgBox(0,0,$source1)

9922250 发表于 2012-7-16 02:16:37

回复 3# ebhb


    我想得到 这个商品的,价格,名字。销量
页: [1]
查看完整版本: 淘宝没返回数据,GET错误了,求帮忙