|
本帖最后由 sunnfhrb 于 2022-6-28 15:25 编辑
postman 和demo上传都没有问题。现在想用httphelper上传如何弄。
主要是files这名称,如何设置。
var filePath = @"F:\sunnf\work\38027345三个系统合成一个\调试\202204140001 周杰伦30.zip";
var url = "http://su.natapp.cc/filemanage/common/uploadFolderZip?username=13999999999&password=123456";
{
HttpHelper httpHelper = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = url,//URL 必需项
Method = "post",//URL 可选项 默认为Get
ContentType = "application/json",//返回类型 可选项有默认值
PostDataType = PostDataType.FilePath,//默认为字符串,同时支持Byte和文件方法
PostEncoding = System.Text.Encoding.UTF8,//默认为Default,
Postdata = filePath,//Post要发送的数据
};
HttpResult result = httpHelper.GetHtml(item);
//获取请请求的Html
string html = result.Html;
}
这样上传,不成功。
|
组图打开中,请稍候......
|