Jakub
Jakub

Reputation: 3129

Is it possible to post to Facebook without using Facebook Connect dialogs?

I would like to post updates to Facebook from my iPhone application. I know that there is a Facebook Connect project, but it requires displaying dialogs for entering user's credentials, dialog for posting content, etc. I would like to be able to get the credentials from application settings and post whatever the user put into UITextView. Is it possible? or am I stack with Facebook Connect?

Thanks!

Upvotes: 0

Views: 532

Answers (1)

greg
greg

Reputation: 4953

You need to use Facebook Connect to authenticate and let the user set privacy settings for your app on their profile. You might technically be able to write all the authentication code yourself (see Facebook's Developers page about authentication) but why bother when the experts have done it for you?

You can then use the Facebook Connect API to do whatever you need to do with Facebook, assuming the user has give your app permission to do so.

Upvotes: 1

Related Questions