苏飞论坛

标题: 【HttpHelper万能框架教程】- POST请求 [打印本页]

作者: 站长苏飞    时间: 2014-9-7 09:55
标题: 【HttpHelper万能框架教程】- POST请求
           【HttpHelper万能框架教程】- POST请求

导读部分

1.【HttpHelper万能框架】教程目录贴  http://www.sufeinet.com/thread-9989-1-1.html


教程部分


POST请请求是使用Http协议与请求的URL进行连接,然后再写入数据,最后关闭连接的过程。

下面看下怎么样使用我的框架来完成这一次发送和接收数据第一步引入命名空间
[C#] 纯文本查看 复制代码

using CsharpHttpHelper;
using System.Net;


第二部在页面下写相关代码
[C#] 纯文本查看 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using CsharpHttpHelper;
using System.Net;
using CsharpHttpHelper.Enum;

namespace CsharpHttpHelper_Demo
{
    public partial class HttpPost_Demo : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            //创建Httphelper对象
            HttpHelper http = new HttpHelper();
            //创建Httphelper参数对象
            HttpItem item = new HttpItem()
            {
                URL = "http://www.sufeinet.com",//URL     必需项   
                Method = "post",//URL     可选项 默认为Get   
                ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值
                Postdata = "a=123&c=456&d=789",//Post要发送的数据
            };
            //请求的返回值对象
            HttpResult result = http.GetHtml(item);
            //获取请请求的Html
            string html = result.Html;
            //获取请求的Cookie
            string cookie = result.Cookie;
        }
    }
}


就是这么简单完成了。



作者: Homeless    时间: 2015-2-27 09:43
强烈支持楼主ing……
作者: vaseful    时间: 2015-4-23 15:47
返回的html为空,是怎么回事呢
作者: 站长苏飞    时间: 2015-4-23 16:01
vaseful 发表于 2015-4-23 15:47
返回的html为空,是怎么回事呢

没达到服务端的参数要求
作者: vaseful    时间: 2015-4-24 21:55
本帖最后由 vaseful 于 2015-4-24 21:57 编辑

post显示成功登陆,用 string cookie = result.Cookie;得到个cookie,无法用于get。get时总显示未登陆,和正确cookie对比后发现string cookie = result.Cookie得到是cookie是错误的。是怎么回事呢
作者: 站长苏飞    时间: 2015-4-24 22:23
vaseful 发表于 2015-4-24 21:55
post显示成功登陆,用 string cookie = result.Cookie;得到个cookie,无法用于get。get时总显示未登陆,和正 ...

具体问题具体分析,都这么简单就好了,发个帖子说明下情况,贴下代码看看
作者: vaseful    时间: 2015-4-24 22:45
站长苏飞 发表于 2015-4-24 22:23
具体问题具体分析,都这么简单就好了,发个帖子说明下情况,贴下代码看看

[C#] 纯文本查看 复制代码
    private void button1_Click(object sender, EventArgs e)
        {
            //创建Httphelper对象
            HttpHelper http = new HttpHelper();
            //创建Httphelper参数对象
            HttpItem item = new HttpItem()
            {
                URL = "http://127.0.0.1/dede/login.php",//URL     必需项   
                Method = "post",//URL     可选项 默认为Get  
                Referer = "http://127.0.0.1/dede/login.php?gotopage=%2Fdede%2Findex.php",
                ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值
                Postdata = "gotopage=%2Fdede%2Findex.php&dopost=login&adminstyle=newdedecms&userid=admin&pwd=admin&sm1=",//Post要发送的数据
                Allowautoredirect = true,
            };
            //请求的返回值对象
            HttpResult result = http.GetHtml(item);
            //获取请请求的Html
            string html = result.Html;
            //获取请求的Cookie
            string cookie = result.Cookie;
            textBox1.Text = html;


            item = new HttpItem()
            {
                URL = "http://127.0.0.1/dede/index.php",//URL     必需项   
                Method = "get",//URL     可选项 默认为Get   
                ContentType = "text/html",//返回类型    可选项有默认值
                Cookie=result.Cookie,
                Referer = "http://127.0.0.1/dede/login.php",
                Allowautoredirect=true,
               // ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值   
            };
            result=http.GetHtml(item);
            textBox2.Text = result.Html;
        }


获取到的cookie是:PHPSESSID=d58l6h4plr9h6lt3mfme4blvl3; path=/,DedeUserID=1; expires=Sat, 25-Apr-2015 14:44:48 GMT; path=/,DedeUserID__ckMd5=281bfc97ddb43a5c; expires=Sat, 25-Apr-2015 14:44:48 GMT; path=/,DedeLoginTime=1429886688; expires=Sat, 25-Apr-2015 14:44:48 GMT; path=/,DedeLoginTime__ckMd5=0acf464f1a4d0b67; expires=Sat, 25-Apr-2015 14:44:48 GMT; path=/

但正确的cookie是:menuitems=1_1%2C2_1%2C3_1; PHPSESSID=qsdlc4fn0g1thas52c7kcjq9i7; DedeUserID=1; DedeUserID__ckMd5=281bfc97ddb43a5c; DedeLoginTime=1429886343; DedeLoginTime__ckMd5=5f29aecfca6f6867

作者: 站长苏飞    时间: 2015-4-25 01:02
vaseful 发表于 2015-4-24 22:45
[mw_shl_code=csharp,true]    private void button1_Click(object sender, EventArgs e)
        {
   ...

这就是正确的啊,浏览器是把Cookie的路径和过期时间隐藏了,并不是没有,而程序获取的是肯定会带的,这个完全可以格式化一下的

http://www.sufeinet.com/thread-10019-1-1.html
你们如果用 我的框架的话,我不需要你们把教程都看一遍,但是标题和现有功能应该知道。
作者: vaseful    时间: 2015-4-25 16:18
站长苏飞 发表于 2015-4-25 01:02
这就是正确的啊,浏览器是把Cookie的路径和过期时间隐藏了,并不是没有,而程序获取的是肯定会带的,这个 ...

还是登陆不进去啊。
[C#] 纯文本查看 复制代码
        private void button1_Click(object sender, EventArgs e)
        {
            //创建Httphelper对象
            HttpHelper http = new HttpHelper();
            //创建Httphelper参数对象
            HttpItem item = new HttpItem()
            {
                URL = "http://127.0.0.1/dede/login.php",//URL     必需项   
                Method = "post",//URL     可选项 默认为Get  
                Referer = "http://127.0.0.1/dede/login.php?gotopage=%2Fdede%2Findex.php",
                ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值
                Postdata = "gotopage=%2Fdede%2Findex.php&dopost=login&adminstyle=newdedecms&userid=admin&pwd=admin&sm1=",//Post要发送的数据
                //Allowautoredirect = true,
            };
            //请求的返回值对象
            HttpResult result = http.GetHtml(item);
            //获取请请求的Html
            string html = result.Html;
            //获取请求的Cookie
            string cookie = result.Cookie;
            cookie = HttpHelper.GetSmallCookie(cookie);
            textBox1.Text = cookie;


            item = new HttpItem()
            {
                URL = "http://127.0.0.1/dede/index.php",//URL     必需项   
                Method = "get",//URL     可选项 默认为Get   
                ContentType = "text/html",//返回类型    可选项有默认值
                Cookie = cookie,
                Referer = "http://127.0.0.1/dede/login.php",
                Allowautoredirect=true,
               // ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值   
            };
            result=http.GetHtml(item);
            textBox2.Text = result.Html;
        }



获取到的cookie是:
PHPSESSID=birbr3b62s177k1br4edj8k8m4;DedeUserID=1;DedeUserID__ckMd5=281bfc97ddb43a5c;DedeLoginTime=1429949847;DedeLoginTime__ckMd5=d4dd5f7d368faa60;
和正确的cookie很像,但就是无法登陆。

作者: 站长苏飞    时间: 2015-4-26 07:55
vaseful 发表于 2015-4-25 16:18
还是登陆不进去啊。
[mw_shl_code=csharp,true]        private void button1_Click(object sender, Eve ...

你写东西是不是都不抓包啊同志。Allowautoredirect=true,这个能直接让跳转吗?
作者: 79612086    时间: 2018-3-6 16:29
买了个年费会员试试水,如果好用补差价升级终身VIP
作者: sdliuhao    时间: 2019-6-11 15:27
强烈支持楼主ing……
作者: hcljq425    时间: 2021-4-27 18:06
post数据为json格式时,Postdata 变量要怎么传呢?用&xxx=xx&xx=xx&...这种方式明显不行。
作者: soonhot    时间: 2021-12-16 17:26
hcljq425 发表于 2021-4-27 18:06
post数据为json格式时,Postdata 变量要怎么传呢?用&xxx=xx&xx=xx&...这种方式明显不行。

你的解决了吗?我也遇到了这个问题。
作者: aqsoft    时间: 2022-3-15 14:18
hcljq425 发表于 2021-4-27 18:06
post数据为json格式时,Postdata 变量要怎么传呢?用&xxx=xx&xx=xx&...这种方式明显不行。

这个版本不支持post body里面是json的,晕死
作者: superpll    时间: 2022-5-24 22:35
No:1234
NoDisp:546
Balance:1.00
SelectedItem:{ACCOUNTNO:"444",FLAGE_:"[FLAGE_REG_NETFEEZERO]",OID:"8888"}
amount:444


Postdata = "No=1234&NoDisp=546&Balance=1.00&SelectedItem=????&amount=444"
请问版主这种post数据SelectedItem这里怎么格式化?
作者: 站长苏飞    时间: 2022-5-25 08:25
superpll 发表于 2022-5-24 22:35
No:1234
NoDisp:546
Balance:1.00

循环取出来字符串对接




欢迎光临 苏飞论坛 (http://www.sufeinet.com/) Powered by Discuz! X3.4