0

我正在为 iOS 9 使用 AFNetworking 3、Xcode 7.2。

AFURLSessionManager *ses = [[AFURLSessionManager alloc] initWithSessionConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]];
ses.responseSerializer = [AFJSONResponseSerializer serializer];

//Request
[[AFJSONRequestSerializer serializer] setValue:@"application/json" forHTTPHeaderField:@"Accept"];
NSMutableURLRequest *request = [[AFJSONRequestSerializer serializer] requestWithMethod:@"GET" URLString:endPoint parameters:parameters error:nil];

NSURLSessionDataTask *dataTask = [ses dataTaskWithRequest:request completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {
    if (error) {
        NSLog(@"Error: %@", error);
    } else {
        NSLog(@"%@ %@", response, responseObject);
    }
}];
[dataTask resume];

但我收到错误响应:

Domain=com.alamofire.error.serialization.response Code=-1016 “请求失败:不可接受的内容类型:文本/纯文本”

请求内容类型仍设置为“文本/纯文本”我不确定我缺少什么。

4

1 回答 1

1

我使用了 http 响应序列化程序本身,它工作正常。

AFURLSessionManager *ses = [[AFURLSessionManager alloc] initWithSessionConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]];
    ses.responseSerializer = [AFHTTPResponseSerializer serializer];

NSMutableDictionary * innerJson = [NSJSONSerialization
                                               JSONObjectWithData:responseObject options:kNilOptions error:&error1];
于 2016-01-27T02:43:08.720 回答