AFNetworking 3.0 Code=-1016 错误解决方案

AFNetworking 3.0 Code=-1016 错误解决方案

导入AFNetworking类库(请参考:iOS 9 导入类库全面详尽过程(Ruby安装->CocoaPods安装->导入类库))之后,然后小伙伴们就可以照着如下官方文档欢乐地写代码。

AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
[manager GET:@"http://blog.csdn.net/sps900608" parameters:nil progress:nil success:^(NSURLSessionTask *task, id responseObject) {
    NSLog(@"Success: %@", responseObject);
} failure:^(NSURLSessionTask *operation, NSError *error) {
    NSLog(@"Error: %@", error);
}];

或是用Swift:

let sessionManager = AFHTTPSessionManager()
sessionManager.GET("http://blog.csdn.net/sps900608", parameters: nil, progress: nil, success: { (task, responseObject) in
            NSLog("Success:\(responseObject)");
            }) { (task, error) in
            NSLog("Error:\(error)")
        }

结果就妥妥地报错了

Error:Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html" UserInfo={com.alamofire.serialization.response.error.response=<NSHTTPURLResponse: 0x7fc723e290c0> { URL: http://m.blog.csdn.net/blog/index?username=sps900608 } { status code: 200, headers {
    "Cache-Control" = private;
    Connection = "keep-alive";
    "Content-Encoding" = gzip;
    "Content-Type" = "text/html; charset=utf-8";
    Date = "Fri, 20 May 2016 09:01:39 GMT";
    "Keep-Alive" = "timeout=20";
    Server = openresty;
    "Transfer-Encoding" = Identity;
    Vary = "Accept-Encoding";
    "X-AspNetMvc-Version" = "3.0";
    "X-Powered-By" = "PHP 5.4.28";
} }, NSErrorFailingURLKey=http://m.blog.csdn.net/blog/index?username=sps900608

搜索 “Request failed: unacceptable content-type: text/html” 的解决方案,会有很多人告诉你去修改AFURLResponseSerialization类中的

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

改为:

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

或者在AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];之后加一行这样的代码:

manager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"text/html", nil];

接下来又有可能报另一个错误

Error:Error Domain=NSCocoaErrorDomain Code=3840 "JSON text did not start with array or object and option to allow fragments not set." UserInfo={NSDebugDescription=JSON text did not start with array or object and option to allow fragments not set.}

为了从根本上解决 Code=-1016 错误,并避免 Code=3840 错误,其实只需要一行代码就能搞定:

sessionManager.responseSerializer = [AFHTTPResponseSerializer serializer]

Swift:

sessionManager.responseSerializer = AFHTTPResponseSerializer()

示例代码:

import UIKit
import AFNetworking

class ViewController: UIViewController {

    @IBOutlet var webView: UIWebView!

    override func viewDidLoad() {
        super.viewDidLoad()

        let sessionManager = AFHTTPSessionManager()
        sessionManager.responseSerializer = AFHTTPResponseSerializer()
        sessionManager.GET("http://blog.csdn.net/sps900608", parameters: nil, progress: nil, success: { (task, responseObject) in
            let data = responseObject as! NSData
            self.webView.loadData(data, MIMEType: "text/html", textEncodingName: "utf-8", baseURL: NSURL())
            }) { (task, error) in
                NSLog("Error:\(error)")
        }

        // Do any additional setup after loading the view, typically from a nib.
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
}

运行效果:

时间: 2024-11-03 09:30:26

AFNetworking 3.0 Code=-1016 错误解决方案的相关文章

iOS 9 Afnetworking 3.0 Request failed: unacceptable content-type: text/plain

iOS"Request failed: unacceptable content-type: text/html" (2014-11-24 14:12:12)   以前用的好端端的接口,今天访问居然出错了,但是再用浏览器测试,发现可以正常返回数据,甚是奇怪啊. 下面是错误信息: 获取服务器响应出错 error=ErrorDomain=com.alamofire.error.serialization.response Code=-1016"Request failed: un

2016最新CocoaPods安装和错误解决方案_IOS

CocoaPods是什么? CocoaPods是一个负责管理iOS项目中第三方开源库的工具.CocoaPods的项目源码在Github上管理.该项目开始于2011年8月12日,在这两年多的时间里,它持续保持活跃更新.开发iOS项目不可避免地要使用第三方开源库,CocoaPods的出现使得我们可以节省设置和更新第三方开源库的时间,在iOS开发中经常会用到第三方库如AFNetworking,ASIHttpRequest等,在使用第三方库时,你除了要导数源码外,但是,集成这些依赖库需要我们手动去配置,

[翻译] Working with NSURLSession: AFNetworking 2.0

Working with NSURLSession: AFNetworking 2.0   简单翻译,有很多错误,看官无法理解处请英文原文对照. http://code.tutsplus.com/tutorials/working-with-nsurlsession-afnetworking-20--mobile-22651 by Bart Jacobs3 Feb 2014 In the previous installments of this series, we've taken a cl

Hadoop/HIVE错误解决方案大全

1.Retrying connect to server: localhost/127.0.0.1:9000. Call to localhost/127.0.0.1:9000 failed on connection exception: java.net.ConnectException: Connection refused 原因:hadoop未启动或core-site.xml中配置错误 解决方案:启动hadoop或修改配置. 2.Exception in thread "main&quo

ldap-LDAP error code 12 错误

问题描述 LDAP error code 12 错误 我运行ldap查询,报错:javax.naming.OperationNotSupportedException: [LDAP: error code 12 - 0000217A: SvcErr: DSID-0314020F, problem 5010 (UNAVAIL_EXTENSION), data 0 ]; remaining name 'OU=soa,OU=Sites,DC=jlp,DC=cq,DC=com' 在网上找了相关资料,不是

微信开发IOS系统Code无效错误不合法的oauth_code

问题描述 微信开发IOS系统Code无效错误不合法的oauth_code 微信平台开发,使用OAuth2.0来完成网页授权,分享链接,Android系统可以访问,IOS无法访问提示Code无效错误{""errcode"":40029errmsg"":""invalid code""}不合法的oauth_code

afnetworki-ios AFNetworking网络请求出现415错误

问题描述 ios AFNetworking网络请求出现415错误 POST请求,参数上传是json.没有参数的情况下,后台能接受到请求,加上参数之后就出现415错误,很纠结,我传给后台的也是json数据,但是报这样的错误让我不知道如何更改.求大神帮忙,谢谢了! 解决方案 415,错误码已经很明确告诉你了 你还是要检测一下你post的json数据格式等 比如你可以用浏览器插件postman来手动测试一下, 看是否你post的格式服务器接受 解决方案二: 估计是你的服务器不支持post json的格

xml-IE9.0打开存在错误的Xml文档 浏览器显示一片空白 没有错提示 这是为什么呢

问题描述 IE9.0打开存在错误的Xml文档 浏览器显示一片空白 没有错提示 这是为什么呢 解决方案 要看xml有什么错误,是不是编码都没有识别?用记事本打开看看内容是什么. 解决方案二: IE解析xml有问题,没发现错误,也没读出内容

js-判断从文本框输入的字符串格式是否正确 正确格式为 0:正确,1:错误,2:是,3:否

问题描述 判断从文本框输入的字符串格式是否正确 正确格式为 0:正确,1:错误,2:是,3:否 在js或者C#实现 定义一个var a,文本框输入的放入a中,判断a 是否满足格式 0:正确,1:错误,2:是,3:否 实现后截取 数字 冒号 中文字或英文 逗号 解决方案 c#字符串有一个split方法,根据冒号分割成数组,自己去第一个和第二个元素即可 解决方案二: 提问题 提清楚点 你可以叫string 转 array string str="正确,错误,是,否"; string[] a