私はこれを試しました:
meurl = [NSURL URLWithString:@"https://graph.facebook.com/me/picture"];
SLRequest *imageReq =[SLRequest requestForServiceType:SLServiceTypeFacebook requestMethod:SLRequestMethodGET URL:meurl parameters:nil];
imageReq.account = self.facebookAccount;
[imageReq performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
if (error) {
NSLog(@"error -%@", [error debugDescription]);
}else{
NSString *meDataString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
NSLog(@"image -%@", meDataString);
}
}];
しかし、私は得るimage - (nil)
。
ユーザー情報のコードのすぐ上に別のリクエストがあり、すべてのデータを正常に取得できます。