I am able to get user name and its profile image of twitter in my app.Here is my code
- (void) OAuthTwitterController: (SA_OAuthTwitterController *) controller authenticatedWithUsername: (NSString *) username {
NSLog(@"Authenticated with user %@", username);
imageview.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:
[NSString stringWithFormat:@"http://api.twitter.com/1/users/profile_image/%@.json",username]]]];
NSLog(@"http://api.twitter.com/1/users/profile_image/username.json");
recentTweets = [[NSMutableArray alloc] init];
[self updateStream:nil];
}
Now I want to get logged in user's profile image...any one knows about this?