Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need help getting the twitter profile pic once I've been granted access to the Twitter account. The code below gets me the profile handle (@twitter). Is there a way to pull this info directly from Twitter in iOS5?

Here's what I have that works for the handle:

-(void)getTwitterName
{
    ACAccountStore *accountStore = [[ACAccountStore alloc] init];
    ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];

    [accountStore requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error) 

     {
         if(granted) {
             NSArray *accountsArray = [accountStore accountsWithAccountType:accountType];

}
}
share|improve this question

1 Answer

up vote 1 down vote accepted

You can get it from this URL: http://api.twitter.com/1/users/profile_image/:screen_name.format

My profile image, for example, would be http://api.twitter.com/1/users/profile_image/don_kim

You can read more on it here.

share|improve this answer
Could you provide a sample of how to use their example get in Objective C? api.twitter.com/1/users/… – Eric Jan 17 '12 at 15:40
ignore my comment, it's super easy. Thanks! – Eric Jan 17 '12 at 16:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.