Wednesday, January 05, 2011

Uploading photo to facebook via Facebook iOS SDK

The facebook iOS SDK is quite simply. Just downloading from https://github.com/facebook/facebook-ios-sdk and take a look in it DemoApp.
One problem their, the "photo upload" function does not automatically publish the uploaded photo, it wait for user to approve them.

The solution is very easy, following the facebook REST document: http://developers.facebook.com/docs/reference/rest/photos.upload
You must include "publish_stream" into _permission array at line 47 of DemoAppViewController.m

I hope this help!