首页 > Web开发 > 详细

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

时间:2015-10-10 22:48:13      阅读:450      评论:0      收藏:0      [点我收藏+]

使用AFNetworking请求一个网站出现了以下错误

 

Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html" UserInfo={com.alamofire.serialization.response.error.response=<NSHTTPURLResponse: 0x7fc688f34d00> { 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=<7b227374 61746522 3a227375 63636573 73222c22 6d657373 61676522 3a22222c 22726573 756c7422 3a5b5d7d>, 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博客园看到本文,请点击查看原文.

 

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

原文:http://www.cnblogs.com/wb145230/p/4868416.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!