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've integrated the FB SDK 3.1 in my ios application to support both iOS5 and iOS6.

I can successfully share an image on my FB wall for iOS6 but I'm not able to make the sharing work for iOS5.

Anyone have idea using FBsdk 3.1 how to achieve this:

1) Share image using FBsdk 3.1 for iOS5 and iOS6(Done)

2) Fetch user albums photos for both iOS5 and iOS6.

Thanks.

share|improve this question

1 Answer

up vote 0 down vote accepted

@Max: You can post photo on facebook as below...

[self performPublishAction:^{
        NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                       imageToShare, @"picture",
                                       Description, @"caption",
                                       FACEBOOK_ACCESS_TOKEN],@"access_token",
                                       nil];

        [FBRequestConnection startWithGraphPath:@"me/photos" parameters:params HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
            if (!error) {
                NSLog(@"--- Post photo Result = %@",result);
            }else{
                NSLog(@"--- Error!!! :( = %@",error);
            }
        }];
 }];
share|improve this answer

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.