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 have the following code to add an event everything works and loads to facebook with no problems the only problem is that the image does not upload nor is there any type of help with this in the docs for iOS maybe im looking in the wrong place? Maybe you have been through this and can help. Thank you

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                 [delegate facebook].accessToken, @"access_token",
                                 @"Going To Eat!", @"name",
                                 @"description of the event", @"description",
                                 @"2012-08-20T17:00:00+0000", @"start_time",
                                 @"2012-08-21T17:00:00+0000", @"end_time",
                                 @"Carlsbad", @"city",
                                 @"CA", @"state",
                                 @"900 safe street", @"street",
                                 @"OPEN", @"privacy",
                                 @"https://.../img/faces/pizza-port-brewing-carlsbad.jpg", @"@file.jpg",
                                 nil];

  [[delegate facebook] requestWithGraphPath:@"me/events" 
                        andParams:params
                    andHttpMethod:@"POST"
                      andDelegate:self];
share|improve this question

2 Answers

please check the document of facebook developer https://developers.facebook.com/docs/reference/api/event/ here. In which you can find parameter "picture" that contain image

share|improve this answer
Tried this but no luck. – Silent Jul 18 '12 at 17:56

Ok I figured this out if you are using the current Facebook API for IOS then you can pass a UIImage object to the requestWithGraphPath: call it will auto detect it and upload it to your event icon. If its an image link then make a UIImage out of NSURL.

UIImage *image = [[UIImage alloc]initWithImageNamed@"test.png"];    

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys: [delegate facebook].accessToken, @"access_token", @"Going To Eat!", @"name", @"description of the event", @"description", @"2012-08-20T17:00:00+0000", @"start_time", @"2012-08-21T17:00:00+0000", @"end_time", @"Carlsbad", @"city", @"CA", @"state", @"900 safe street", @"street", @"OPEN", @"privacy", image, @"picture", nil];

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

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.