本文主要是介绍[Error]AFNetworking使用GET请求报错(Code=-1016),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Error打印:
Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html" UserInfo={NSLocalizedDescription=Request failed: unacceptable content-type: text/html,
解决:
manager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"text/html",@"text/plain",@"application/json",nil];
这篇关于[Error]AFNetworking使用GET请求报错(Code=-1016)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!