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.

Please help getting a larger profile picture from Facebook. My method below returns a link to a tiny one.

- (void)openSession{

    NSArray *permissions = [NSArray arrayWithObject:@"email"];
    NSDictionary *parameters = [NSDictionary dictionaryWithObject:
                                @"picture,email,name,username,location,first_name,last_name"
                                                           forKey:@"fields"];
    [FBSession openActiveSessionWithReadPermissions:permissions
                                       allowLoginUI:YES
                                  completionHandler:^(FBSession *session,
                                                      FBSessionState state,
                                                      NSError *error) {
                                      if (session.isOpen) {
                                          [FBRequestConnection startWithGraphPath:@"me" parameters:parameters
                                                                       HTTPMethod:@"GET"
                                                                completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {

                                                                    //save personal details using "id result"
                                                                    [...saving method here...]
                                                                    //manage session
                                                                    [self sessionStateChanged:session state:state error:error];
                                                                }];
                                      }
                                  }];
}

I have also found this way: if following this link in a web browser, I can get the image larger (the bla-bla-bla is my Facebook id:)))

http://graph.facebook.com/92875029-bla-bla-bla-84538042/picture?type=large

But it looks like the link above leads to a redirect page, cos' after the image is loaded, the link is changed to :

http://profile.ak.fbcdn.net/hprofile-ak-snc6/1864-bla-bla-bbla-bla482_n.jpg

Well, never mind, I cannot use it in my method above anyway.

So actually I am getting the profile picture, but as I said, it's small.

Please help getting it larger, but within my used method. Many thanks in advance

share|improve this question

1 Answer

up vote 2 down vote accepted

Change your parameters to:

@"picture.type(large),email,name,username,location,first_name,last_name"
share|improve this answer
Thanks, lonelytoad! :))) it worked. – Sava Mazăre Nov 29 '12 at 22:34

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.