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.

Ok so there is a lot of threads on this, but nothing seems to work for me.

My app allows users to post a photo (which is a UIImage created by a screenshot of the App) to facebook.

However, I can currently only post the photo by using:

    NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:[[appDelegate facebook] accessToken], @"access_token",nil];
    [params setObject:@"Caption" forKey:@"name"];
    [params setObject:[self captureScreen] forKey:@"source"];
    if([[appDelegate facebook] requestWithGraphPath:@"me/photos" andParams: params andHttpMethod: @"POST" andDelegate:(id)self]){
        [self.view addSubview:[Memos showMemo:facebookMemo]];//Show success alert
    }

This works fine, but doesn't use any sort of FB Dialog. I really want to use the dialog so users can feel like it is more "facebook official" and allow them to preview/confirm the post.

Is there any SIMPLE way to go about doing this? This is the closest I have gotten: Post photo on user's wall using Facebook iOS SDK, but I have issues with these lines:

currentAPICall = kAPIGraphUserPhotosPost;

As xcode doesnt recognize any of the kAPI... objects... Suggestions?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.