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.
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               photoDescription, @"message",
                               image, @"image",
                               nil];


[facebook requestWithGraphPath:@"me/photos"
                                    andParams:params
                                andHttpMethod:@"POST"
                                  andDelegate:self];

This is what I did to upload a image to Facebook. The image is uploaded successfully to FaceBook 'photos'. But I want to post the image to my FaceBook Feed. So i tried,

[facebook requestWithGraphPath:@"me/feed"
                                    andParams:params
                                andHttpMethod:@"POST"
                                  andDelegate:self];

but it still the images posted to the 'photos'. It does not appear in the Feed...

I searched and used different methods for a solution, but I couldn't find anything helpful...

share|improve this question

1 Answer

Not sure what your params looks like, but try this..

UIImage *image = ...// some image.

NSData *imageData= UIImagePNGRepresentation(image);

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                           @"some message", @"message", imageData,@"source", nil];

[facebook dialog:@"feed" andParams:params andDelegate:self];
share|improve this answer
I believe this is the same as the solution in the question. In other words it will only post to the users time line, not to the news feed. – The Crazy Chimp May 31 '12 at 12:28
Edited my answer to utilize Facebook's dialog method, and not the graph request. Can't test right now, but hopefully that's the answer – skram May 31 '12 at 12:46
I've just tried out your solution but it didnt post the image to Facebook at all. I thought the feed dialog would be correct too. I've also tried me/feed which didn't work either. – The Crazy Chimp May 31 '12 at 12:56
To post the user's feed, use the dialog "feed" instead of posting an object. developers.facebook.com/docs/reference/dialogs/feed – Anna Billstrom Jun 2 '12 at 22:59

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.