AFNetworking 使用过程中报错~~~403~
AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
manager.requestSerializer = [AFHTTPRequestSerializer serializer];
manager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"text/html",nil];
[manager GET:@"http://news-at.zhihu.com/api/4/start-image/1080*1776" parameters:nil progress:^(NSProgress * _Nonnull downloadProgress) {
NSLog(@"%@",downloadProgress);
} success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
NSLog(@"%@",responseObject);
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
NSLog(@"%@",error);
}];
请求头什么的都加上了,可是还是报403的错误
2015-12-09 18:19:03.951 testUrl[18372:7194769] Error Domain=com.alamofire.error.serialization.response Code=-1011 "Request failed: forbidden (403)" UserInfo={com.alamofire.serialization.response.error.response=<NSHTTPURLResponse: 0x7fb1c9f2cca0> { URL: http://news-at.zhihu.com/api/4/start-image/1080*1776 } { status code: 403, headers {
"Cache-Control" = "no-cache";
"Content-Type" = "text/html";
} }, NSErrorFailingURLKey=http://news-at.zhihu.com/api/4/start-image/1080*1776, com.alamofire.serialization.response.error.data=<3c68746d 6c3e3c62 6f64793e 3c68313e 34303320 466f7262 69646465 6e3c2f68 313e0a52 65717565 73742066 6f726269 6464656e 20627920 61646d69 6e697374 72617469 76652072 756c6573 2e0a3c2f 626f6479 3e3c2f68 746d6c3e 0a>, NSLocalizedDescription=Request failed: forbidden (403)}
这是为什么啊、、、、、大神求助~~~
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
服务器返回403状态了,问后台吧