HTTP-POST提交数据:ContentType=application/x-www-form-urlencoded 内容格式
content-type
application/x-www-form-urlencoded;charset=UTF-8
C#代码示例:
C# 全选
//组合x-www-form-urlencoded格式的字符串
var pdata = $"appid={appid}&nonce={nonce}×tamp={timestamp}&sign={signStr}&operation=add&data={json}";
//提交数据
var result = WebApiTools.Post(url, pdata, "application/x-www-form-urlencoded;charset=UTF-8");
return Newtonsoft.Json.JsonConvert.DeserializeObject<PostResult>(result);
WebApiTools.cs源码下载:
版权声明:本文为开发框架文库发布内容,转载请附上原文出处连接
NewDoc C/S框架网