码迷,mamicode.com
首页 > 其他好文 > 详细

Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptabl

时间:2016-01-20 22:31:50      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:

在使用AFNetworking 2.0  的时候本来一切很顺畅,但是中途遇到几个比较坑的地方

这里分享一下爬坑经历,忘读者不能速爬坑!

在发送请求后,NSURLSessionDataTask一直报错

Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html"

 AFURLResponseSerialization.m中修改代码就能解决:

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

 修改为

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

 

Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptabl

标签:

原文地址:http://www.cnblogs.com/asheng/p/5146771.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!