I've used the following method from MGTwitterEngine.m
in order to fetch the friend list:
(NSString *)getFriendsIds:(NSString *)twitterID
{
NSString *path = [NSString stringWithFormat:@"friends/ids.%@", API_FORMAT];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithCapacity:0];
[params setObject:twitterID forKey:@"user_id"];
return [self _sendRequestWithMethod:nil path:path queryParameters:params body:nil
requestType:MGTwitterUserInformationRequest
responseType:MGTwitterUsers];
}
And in my class I've made the following call:
NSLog(@"friends %@",[_engine getFriendsIds:@"user_id"]);
I couldn't retreive the friend list.