AFNetworking返回400错误请求

编程入门 行业动态 更新时间:2024-10-15 06:18:57
本文介绍了AFNetworking返回400错误请求的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我想通过AFNetworking发布图片,这是代码

i want to post image by AFNetworking,here is the code

AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; manager.responseSerializer.acceptableContentTypes = [manager.responseSerializer.acceptableContentTypes setByAddingObject:@"text/html"]; manager.responseSerializer = [AFHTTPResponseSerializer serializer]; manager.requestSerializer = [AFHTTPRequestSerializer serializer]; [manager POST:URL parameters:nil constructingBodyWithBlock:^(id<AFMultipartFormData> formData){ [formData appendPartWithFileData:UIImageJPEGRepresentation(selfPhoto, 1) name:@"file" fileName:imageFilePath mimeType:@"image/jpg"]; }

但返回400错误请求,这是错误消息:

but return 400 bad request,here is the errro:

Domain = com.alamofire.error.serialization.response代码= -1011请求 失败:错误的请求(400)" UserInfo = {com.alamofire.serialization.response.error.response = {URL: 121.42.203.122 :8080/8minutes/uploadImg } {状态码:400,标题{ 连接=关闭; "Content-Language" = zh; 内容长度" = 1105; "Content-Type" =文本/html; charset = utf-8"; 日期=星期五,2015年12月11日05:36:46 GMT"; 服务器="Apache-Coyote/1.1"; }

Domain=com.alamofire.error.serialization.response Code=-1011 "Request failed: bad request (400)" UserInfo={com.alamofire.serialization.response.error.response= { URL: 121.42.203.122:8080/8minutes/uploadImg } { status code: 400, headers { Connection = close; "Content-Language" = en; "Content-Length" = 1105; "Content-Type" = "text/html;charset=utf-8"; Date = "Fri, 11 Dec 2015 05:36:46 GMT"; Server = "Apache-Coyote/1.1"; } }

这是网络服务网址键:

param:{"file"}

我错了吗?

推荐答案

这是因为您收到的响应采用" text/html "格式,因此应采用 application/json 格式.

Its because the response you are getting is in "text/html" format it should be in application/json format.

更多推荐

AFNetworking返回400错误请求

本文发布于:2023-07-16 02:04:02,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1116666.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:错误   AFNetworking

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!