iOS----------网络请求错误
程序员文章站
2022-06-20 20:36:54
Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html" 解决方案: 在AFNetWorking的源文件AFURL ......
Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html"
解决方案:
在AFNetWorking的源文件AFURLResponseSerialization.m中修改代码:
修改228行:self.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript", nil];
修改为: self.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript",@"text/html", nil];
推荐阅读
-
请求400错误请求(解决http400错误的方法)
-
FTP 网络错误 (10054): 连接被同位体重置 解决方法
-
nginx比apache处理静态文件速度快,但是nginx处理大量并发的php请求时,容易出现502错误,频率大概是多少
-
Kotlin结合Rxjava+Retrofit实现极简网络请求的方法
-
Spring Boot + Vue 前后端分离开发之前端网络请求封装与配置
-
mac 安装python网络请求包requests方法
-
Android获取WebView加载url的请求错误码 【推荐】
-
Android Retrofit和Rxjava的网络请求
-
基于 IntelliJ IDEA 模拟 Servlet 网络请求示例
-
请求400错误请求(解决http400错误的方法)