0

我一直试图在将请求分派到需要 OAuth 身份验证的基于 REST 的服务的特定实例中掌握 AFHTTPClient 。使用 GTMOAuth 创建 OAuth 身份验证没有问题。

我还可以成功地编组参数以分派请求并使用手工拼凑的 NSMutableURLRequest 以及 AFJSONRequestOperation 和 NSURLConnection 获得格式良好的 JSON 响应。后两个机制是我的理智检查,我正确地接触了服务。

我得到了回应

[AFHTTPClient HTTPRequestOperationWithRequest:request success:^(AFHTTPRequestOperation *operation, id responseObject)] 

但无论如何——它被解释为文本/纯文本。返回对象的类是 __NCFData。

没有布埃诺。

这段代码不想返回任何类型的字典的响应。

- (IBAction) testFlickr {
// marshall parameters
NSString *urlStr = @"http://api.flickr.com/";
NSURL *url = [NSURL URLWithString:urlStr];

AFHTTPClient *client = [[AFHTTPClient alloc]initWithBaseURL:url];
[client registerHTTPOperationClass:[AFJSONRequestOperation class]];
[client setParameterEncoding:AFJSONParameterEncoding];
NSDictionary *params = [[NSDictionary alloc]initWithObjectsAndKeys:@"json", @"format", @"66854529@N00", @"user_id", @"1", @"jsoncallback", nil];

NSString *path = [[NSString alloc]initWithFormat:@"services/rest/?method=flickr.people.getPhotos"];

NSMutableURLRequest *af_request = [client requestWithMethod:@"GET" path:path parameters:params];

// flickrAuth instance variable is an instance of GTMOAuthAuthentication
[self.flickrAuth authorizeRequest:af_request];

[client setAuthorizationHeaderWithToken:[self.flickrAuth accessToken]];
[client setDefaultHeader:@"Accept" value:@"application/json"];

[client requestWithMethod:@"GET" path:path parameters:params];

LOG_FLICKR_VERBOSE(0, @"Can Authorize? %@", ([self.flickrAuth canAuthorize] ? @"YES":@"NO"));
LOG_FLICKR_VERBOSE(0, @"%@", client);


// first way of trying..
AFHTTPRequestOperation *af_operation = [client HTTPRequestOperationWithRequest:af_request success:^(AFHTTPRequestOperation *operation, id responseObject) {
    NSString *str = [[NSString alloc] initWithData:responseObject
                                          encoding:NSUTF8StringEncoding];
    LOG_FLICKR_VERBOSE(0, @"Weird af_operation semantics, but.. %@", str);
    LOG_FLICKR_VERBOSE(0, @"Weird af_operation semantics returns %@", [responseObject class]);

} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
    //
    LOG_FLICKR_VERBOSE(0, @"Weird af_operation semantics, error.. %@", error);

}];

[af_operation start];
}

这个请求可以通过。响应数据本身是我所期望的,但它不是任何类型的字典类。

我宁愿继续使用 AFHTTPClient 的方法(而不是,例如,[AFJSONRequestOperation JSONRequestOperationWithRequest]),这样我就可以使用 AFHTTPClient 的可达性方法等等。

奇怪的是(至少对我来说),如果我这样请求:

NSMutableURLRequest *aj_request = [client requestWithMethod:@"GET" path:path parameters:params];
[self.flickrAuth authorizeRequest:aj_request];

AFJSONRequestOperation *aj_operation = 
[AFJSONRequestOperation JSONRequestOperationWithRequest:af_request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
    LOG_FLICKR_VERBOSE(0, @"AFJSONRequestOperation %@", JSON);
} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
    LOG_FLICKR_VERBOSE(0, @"AFJSONREquestOperation Error %@", error);
}];

[aj_operation start];

它以“401”失败,因为它在响应标头中期待应用程序/json,而是认为它收到了 text/plain

但是,如果我这样请求:

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[[NSURL alloc]initWithString:@"http://api.flickr.com/services/rest/?method=flickr.people.getPhotos&format=json&user_id=66854529@N00&nojsoncallback=1"]];
[self.flickrAuth authorizeRequest:request];

AFJSONRequestOperation *operation =
[AFJSONRequestOperation JSONRequestOperationWithRequest:request
                                                success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
                                                    LOG_FLICKR_VERBOSE(0, @"Success Flickr  =========\n%@ %@", JSON, [JSON valueForKeyPath:@"photos.total"]);
                                                    /////handler(JSON, nil);
                                                } failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
                                                    LOG_FLICKR(0, @"URL Was %@", url);
                                                    LOG_FLICKR(0, @"Failed Flickr  ==========\n%@ %@", error, JSON);
                                                    /////handler(nil, error);
                                                }];
[operation start];

它工作正常,包括漂亮的 JSON、字典形式的数据。

在第一个实例中,我使用 AFHTTPClient 来生成 NSMutableURLRequest。在第二种情况下,我自己创建了 NSMutableURLRequest。在这两种情况下,我都使用 AFJSONRequestOperation 来分派请求,将问题的唯一罪魁祸首留给(除了我自己..)AFHTTPClient。

在我可以开始工作的第一个示例中,它没有返回 JSON-y 数据。

在第二个示例中,AFHTTPClient 似乎创建了一个明显失败的 NSMutableURLRequest——但是(AFAICT)当使用 [NSMutableURLRequest requestWithURL]“手动”创建该 URL 时,相同的 URL 成功。

我想知道 - 使用 AFHTTPClient 时我错过了什么?

帮助?

4

2 回答 2

2

在您的第一个代码示例中,看起来您正在做NSMutableURLRequest *af_request = [client requestWithMethod:@"GET" path:path parameters:params];然后设置默认标题。默认标头仅适用于在指定后创建的请求。也许这就是事情出错的地方。

此外,该 401 错误可能是在抱怨其内容类型,但 401 是错误状态代码,这意味着您未经身份验证。

于 2012-11-02T15:31:20.103 回答
0

我最终删除了所有标头参数以隔离问题,但这没有任何区别。仔细检查回复给了我一个线索。虽然 Flickr 确实返回“JSON”,但它不是 Lint-free,它似乎需要对其中一个参数进行调整。我一直在发送 jsoncallback=1 但它应该是 nojsoncallback=1。一旦我修复了该参数 AFJSONRequestOperation 正确处理响应并解析 JSON。

我的最终代码如下所示(对于其他人,请注意 nojsoncallback=1 参数)

- (IBAction)testFlickrAFJSON:(id)sender
{
// marshall parameters
NSString *urlStr = @"http://api.flickr.com/";
NSURL *url = [NSURL URLWithString:urlStr];
//NSDictionary *params = [[NSDictionary alloc]initWithObjectsAndKeys:@"json", @"format", @"66854529@N00", @"user_id", nil];
NSDictionary *params = [[NSDictionary alloc]initWithObjectsAndKeys:@"json", @"format", @"66854529@N00", @"user_id", @"1", @"nojsoncallback", nil];
NSString *path = [[NSString alloc]initWithFormat:@"services/rest/?method=flickr.people.getPhotos"];

AFHTTPClient *client = [[AFHTTPClient alloc]initWithBaseURL:url];

NSMutableURLRequest *af_request = [client requestWithMethod:@"GET" path:path parameters:params];

[self.flickrAuth authorizeRequest:af_request];

LOG_FLICKR_VERBOSE(0, @"Can Authorize? %@", ([self.flickrAuth canAuthorize] ? @"YES":@"NO"));
AFJSONRequestOperation *af_operation_2 = [AFJSONRequestOperation JSONRequestOperationWithRequest:af_request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
        LOG_FLICKR_VERBOSE(0, @"AFJSONRequestOperation Alt %@", JSON);
        LOG_FLICKR_VERBOSE(0,@"AFJSONRequestOperation Alt response MIMEType %@",[response MIMEType]);

    } failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
        LOG_FLICKR_VERBOSE(0, @"AFJSONREquestOperation Alt Error %@", error);
        NSHTTPURLResponse *resp = [[error userInfo] valueForKey:AFNetworkingOperationFailingURLResponseErrorKey];
        LOG_FLICKR_VERBOSE(0,@"AFJSONRequestOperation Alt Error response MIMEType %@",[resp MIMEType]);

    }];

    [af_operation_2 start];

}
于 2012-11-02T20:57:29.233 回答