How to post a photo. iOS Facebook SDK 3.1

后端 未结 2 445
你的背包
你的背包 2020-12-30 09:11

I needed to publish a picture on my wall. The pic is generated in my iPad app.

相关标签:
2条回答
  • 2020-12-30 09:20

    For iOS from 4.3 and the UI look like iOS 6.0, I think you want something like this: IOS sharing framework for twitter, facebook, flicr, tumblr

    0 讨论(0)
  • 2020-12-30 09:34

    This is the simplest way I've found

    - (void) postImageToFB:(UIImage*)image
    {
        NSData* imageData = UIImageJPEGRepresentation(image, 90);    
        NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                        @"This is my drawing!", @"message",
                                        imageData, @"source",
                                        nil];
    
        [FBRequestConnection startWithGraphPath:@"me/photos"
                                     parameters:params
                                     HTTPMethod:@"POST"
                              completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
    
                              }];
    }
    

    if you want to post on a friend's wall, change @"me/photos" by @"[friendID]/photos"

    Then, ask for permissions to publish and call the method

    if ([FBSession.activeSession.permissions indexOfObject:@"publish_stream"] == NSNotFound)
    {
        // No permissions found in session, ask for it
        [FBSession.activeSession reauthorizeWithPublishPermissions:[NSArray arrayWithObject:@"publish_stream"]
                                                   defaultAudience:FBSessionDefaultAudienceFriends
                                                 completionHandler:^(FBSession *session, NSError *error)
         {
             // If permissions granted, publish the story
             if (!error) [self postImageToFB:currentDrawing];
         }];
    }
    // If permissions present, publish the story
    else [self postImageToFB:currentDrawing];
    

    An "[App Name] Photos" album will be created, if doesn't exist

    It does work for me!

    0 讨论(0)
提交回复
热议问题