5

ユーザーを認証するこの甘い方法がありますが、リクエストのステータスコードを取得する方法がわかりません。すると、それが存在することがはっきりとわかりますがNSLog(@"%@", response);、それを引き出す方法が見つかりません。メソッドはありますか、それとも自分で解析する必要がありますか?

- (BOOL)authenticateUserWithEmail:(NSString *)email password:(NSString *)password
{
    NSURL *url = [[NSURL alloc] initWithString:[NSString stringWithFormat:
                                         @"%@/users/sign_in.json?user[email]=%@&user[password]=%@&user[remember_me]=true",
                                         LURL,
                                         email,
                                         password]];
    NSMutableURLRequest *urlRequest = [[NSMutableURLRequest alloc] initWithURL:url];
    [urlRequest setHTTPMethod:@"POST"];
    NSURLResponse *response;
    NSError *error;
    NSData *responseData = [NSURLConnection sendSynchronousRequest:urlRequest returningResponse:&response error:&error];
    NSLog(@"Response: %@", [[NSString alloc] initWithData:responseData encoding:NSASCIIStringEncoding] );
    NSLog(@"Response Meta: %@", response);
    return (error == NULL);
}
4

1 に答える 1

13

これを試して

NSHTTPURLResponse *HTTPResponse = (NSHTTPURLResponse *)response;
NSInteger statusCode = [HTTPResponse statusCode];
于 2013-09-23T01:59:45.237 に答える