wangms 发表于 2014-7-7 21:47:44

请教如下网址如何获得

在本论坛寻得邮箱快捷登录方法(本人有点加工)如下:

163邮箱登录:Local $MyName = "你的用户名"
Local $MyPassword = "你的邮箱密码"
Local $sUrl = StringFormat("https://reg.163.com/logins.jsp?type=1&url=http://entry.mail.163.com/coremail/fcg/ntesdoor2?lightweight=1&verifycookie=1&username=%s&password=%s", $MyName, $MyPassword)
;ShellExecute(@ProgramFilesDir & "\Mozilla Firefox\firefox.exe", $sUrl)
ShellExecute(@ProgramFilesDir & "\Internet Explorer\iexplore.exe", $sUrl)本论坛登录:Local $MyName = "你的用户名"
Local $MyPassword = "你的密码"
Local $sUrl = StringFormat("http://www.autoitx.com/logging.php?action=login&referer=http://www.autoitx.com/forum-6-1.html&loginfield=username&username=%s&password=%s&questionid=0&answer=&cookietime=2592000&loginmode=&styleid=&loginsubmit=?", $MyName, $MyPassword)
;ShellExecute(@ProgramFilesDir & "\Mozilla Firefox\firefox.exe", $sUrl)
ShellExecute(@ProgramFilesDir & "\Internet Explorer\iexplore.exe", $sUrl)
现请教各位老师:
https://reg.163.com/logins.jsp?type=1&url=http://entry.mail.163.com/coremail/fcg/ntesdoor2?lightweight=1&verifycookie=1&username=用户名&password=密码

http://www.autoitx.com/logging.php?action=login&referer=http://www.autoitx.com/forum-6-1.html&loginfield=username&username=用户名&password=密码&questionid=0&answer=&cookietime=2592000&loginmode=&styleid=&loginsubmit=?

这些组成部分是如何获得的??

cxlater 发表于 2014-7-8 09:48:22

登录最好是采用post方式   你这种是get
post的数据可以使用开发者工具F12 来抓取

wangms 发表于 2014-7-8 13:27:53

本帖最后由 wangms 于 2014-7-8 13:28 编辑

回复 2# cxlater


谢谢不吝赐教!!能稍微对post方式具体格式说明一下吗?

shqf 发表于 2014-7-8 16:29:33

推荐下载一个HttpWatch网页数据分析工具试试吧

dncsk 发表于 2014-7-8 18:35:44

大家说的都很好..........
页: [1]
查看完整版本: 请教如下网址如何获得