2

iPhone SDKのFacebookで友達IDリストを友達にするにはどうすればよいですか?

https://graph.facebook.com/me/friend?access_token=あなたのアクセストークン。

4

1 に答える 1

4

//友達: 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 リスト配列です

于 2012-06-16T12:44:18.247 に答える