diandiand163 发表于 2016-9-18 16:05:35

有验证码的登录,怎么POST

发现有验证码的后台登录,用POST提交,登录不成功。请问如何解决?$PostPage = 'http://member.sooshong.com/member/login.jsp'
$xmlHttpReq = ObjCreate("MSXML2.XMLHTTP.3.0")

If @error = 0 Then
      $xmlHttpReq.open("POST",$PostPage,false)
      $xmlHttpReq.setRequestHeader('Content-Type','application/x-www-form-urlencoded')
      $xmlHttpReq.send('UserName=diandianla&UserPass=command&gourl=http%3A%2F%2Fmember.sooshong.com%2Fmember%2Finfo_pub.jsp&check_key=2dd400bc-5e1f-42c5-bc62-9c9b4cd19d10&check_address=sverify.touclick.com%2Csverify.touclick')
      $Content = BinaryToString($xmlHttpReq.responseBody,1)
        MsgBox (0,"",$Content)
IfStringRegExp($Content,'发布供求信息',0) Then
       MsgBox(0,"","登录成功!")
Else
       MsgBox(0,"","登录失败!")
       EndIf
       
               
        EndIf

$xmlHttpReq.abort()

diandiand163 发表于 2016-9-18 16:06:20

坐等高手解决!!!

cihron 发表于 2016-9-18 23:58:44

我看还是洗洗睡吧。。。{:face (189):}

1361739590 发表于 2016-9-19 11:14:15

带着验证码一起POST
页: [1]
查看完整版本: 有验证码的登录,怎么POST