8vius
8vius

Reputation: 5836

iOS - Simple Facebook Authentication

I'm trying to authenticate my user on FB with my app in a simple manner, the iOS SDK has this SSO explanation and that's pretty much it, and it seems a bit extreme since I pretty much have to wrap up my entire app in FB goodness, at least that's what they guide you through.

Is there just a simple way, be it with the SDK or some other manner, to guide the user through the OAuth process and retrieve the access token and user data, like name, email and birthdate?

Upvotes: 0

Views: 802

Answers (1)

Dima
Dima

Reputation: 23624

One shortcut here is using something like Parse to handle it for you. They actually also include a very nicely made login view controller that does exactly what you're looking for. You can see it here.

Upvotes: 1

Related Questions