欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

NSLocalizedDescription=Request failed: unacceptable content-type: text/html 解决方法_html/css_WEB-ITnose

程序员文章站 2022-04-12 15:20:50
...
使用AFNetworking请求一个网站出现了以下错误

Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html" UserInfo={com.alamofire.serialization.response.error.response= { URL: http://xxx.xxx.xxx } { status code: 200, headers {    "Content-Encoding" = gzip;    "Content-Type" = "text/html";    Date = "Sat, 10 Oct 2015 13:44:28 GMT";    Server = "nginx/1.4.1";    Vary = "Accept-Encoding";    "X-Cache" = "MISS from RJ-ZSBGP-CDN-75";    "X-Powered-By" = "PHP/5.4.16";} }, NSErrorFailingURLKey=http://xxx.xxx.xxx, com.alamofire.serialization.response.error.data=, NSLocalizedDescription=Request failed: unacceptable content-type: text/html}

解决方法:

修改AFNetworking中AFURLResponseSerialization.m文件

在223行,将

    self.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript", nil];

改成

    self.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/html",@"text/json", @"text/javascript", nil];

增加了一个 @"text/html"

如果你不是在wb145230博客园看到本文,请点击查看原文.