日常我们开发时,我们会遇到各种各样的奇奇怪怪的问题(踩坑o(╯□╰)o),这个常见问题系列就是我日常遇到的一些问题的记录文章系列,这里整理汇总后分享给大家,让其还在深坑中的小伙伴有绳索能爬出来。 同时在这里也欢迎大家把自己遇到的问题留言或私信给我,我看看其能否给大家解决。
The server refused this request because the request entity is in a format not supported by the requested resource for the requested method
请求头和服务端要求的不一致,导致服务器无法有效处理
设置该业务接口可以有效接收的格式,例如:
// 常用的表单类型
Content-Type: application/x-www-form-urlencoded;charset=utf-8
Content-Type: multipart/form-data;
Content-Type: application/json;charset=utf-8
本作品由 cn華少 采用 知识共享署名-非商业性使用 4.0 国际许可协议 进行许可。