私のアプリでは、Twitter からフォロー/フォロワーの友達のリストを取得したいと考えています。
現在、フォロワーの名前とIDを取得することはできますが、次のものは取得できません。
私のコードは次のとおりです。
-(void) getTwitterFriendsIDListForThisAccount{
NSURL *url = [NSURL URLWithString:@"http://api.twitter.com/1/followers/ids.json"];
NSDictionary *p = [NSDictionary dictionaryWithObjectsAndKeys:myAccount.username, @"screen_name", nil];
TWRequest *twitterRequest = [[TWRequest alloc] initWithURL:url parameters:p requestMethod:TWRequestMethodGET];
[twitterRequest setAccount:myAccount];
[twitterRequest performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResposnse, NSError *error)
{
if (error) {
}
NSError *jsonError = nil;
// Convert the response into a dictionary
NSDictionary *twitterFriends = [NSJSONSerialization JSONObjectWithData:responseData options:NSJSONWritingPrettyPrinted error:&jsonError];
NSArray *IDlist = [twitterFriends objectForKey:@"ids"];
NSLog(@"response value is: %@", IDlist);
}
次のリストIDを取得するにはどうすればよいですか?? 可能であれば、email_ids も。
移行のエラーが表示されることがあります。1.0 から 1.1 に移行するにはどうすればよいですか?
ありがとうございました、