排名
6
文章
6
粉丝
16
评论
8
{{item.articleTitle}}
{{item.blogName}} : {{item.content}}
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2024TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术
分类:
.NET
在接口中传输图片进制流或BASE64字符串时,使用FormUrlEncodedContent处理参数时,可能会因为参数太长导致异常无效的URL:URL字符串太长
FormUrlEncodedContent
:使用application/x-www-form-urlencoded MIME类型编码的名称/值元组的容器,只能传输ContentType:application/x-www-form-urlencoded
实现:
1 | public async Task<string> Post(string url, Dictionary<string, string> param) |
可是当param太大时 new FormUrlEncodedContent(param)就会抛出异常无效的URL:URL字符串太长
可以换一种方式实现 StringContent!
StringContent
:基于字符串提供http的内容,传输类型皆可(比如常用的application/x-www-form-urlencoded、application/json、multipart/form-data….)实现:
1 | public async Task<string> Post(string url, Dictionary<string, string> param) |
欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739
评价