AFNetworking 使用过程中报错~~~403~

发布于 2022-09-01 22:26:16 字数 1699 浏览 24 评论 0

 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最偏执的依靠 2022-09-08 22:26:16

服务器返回403状态了,问后台吧

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文