iPhone SDKのFacebookで友達IDリストを友達にするにはどうすればよいですか?
https://graph.facebook.com/me/friend?access_token=あなたのアクセストークン。
iPhone SDKのFacebookで友達IDリストを友達にするにはどうすればよいですか?
https://graph.facebook.com/me/friend?access_token=あなたのアクセストークン。
//友達: https://graph.facebook.com/me/friends?access_token=あなたのアクセストークン
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"https://graph.facebook.com/me/friends?access_token=%@", token]]];
[request setHTTPMethod:@"GET"];
NSError *error;
NSURLResponse *response;
NSData *returnData=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSString *returnString=[[NSString alloc]initWithData:returnData encoding:NSUTF8StringEncoding];
NSLog(@"%@",returnString);
SBJSON *json = [[SBJSON new] autorelease];
dic = [[NSMutableDictionary alloc] initWithDictionary:[json objectWithString:returnString error:nil]];
FriendIdArr=[[NSMutableArray alloc]initWithArray:[dic valueForKey:@"data"]];
// FriendIdArr は最終的なフレンド ID リスト配列です