ユーザーを認証するこの甘い方法がありますが、リクエストのステータスコードを取得する方法がわかりません。すると、それが存在することがはっきりとわかりますが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);
}