用VBS实现的发送带Cookie的HTTP请求的代码_vbs教程-查字典教程网
用VBS实现的发送带Cookie的HTTP请求的代码
用VBS实现的发送带Cookie的HTTP请求的代码
发布时间:2016-12-28 来源:查字典编辑
摘要:为了方便测试,先写一个回显Cookie的简单的PHP程序:复制代码代码如下:然后分别用ServerXMLHTTP和XMLHTTP测试:复制代...

为了方便测试,先写一个回显Cookie的简单的PHP程序:

复制代码 代码如下:

<?php

foreach($_COOKIE as $key => $value)

echo "$key => $valuern";

?>

然后分别用ServerXMLHTTP和XMLHTTP测试:

复制代码 代码如下:

Dim http

Set http = CreateObject("Msxml2.XMLHTTP")

http.open "GET", "http://demon.tw/test/cookie.php", False

http.SetRequestHeader "Cookie", "user=demon; passwd=123456"

http.send

WScript.Echo http.responseText

用Msxml2.XMLHTTP什么都没有返回。

复制代码 代码如下:

Dim http

Set http = CreateObject("Msxml2.ServerXMLHTTP")

http.open "GET", "http://demon.tw/test/cookie.php", False

http.SetRequestHeader "Cookie", "user=demon; passwd=123456"

http.send

WScript.Echo http.responseText

用Msxml2.ServerXMLHTTP返回

user => demon

passwd => 123456

以后碰到需要Cookie的网页就不用愁了。

原文: http://demon.tw/programming/vbs-http-cookie.html

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新vbs学习
    热门vbs学习
    脚本专栏子分类