adrin
adrin

Reputation: 3848

Authenticating user with facebook on iOS without UIWebView

Is there a way to authenticate a user with facebook in the background using id/pass he entered in configuration screen? I mean authentication without the usage of UIWebView, but using some kind of Http client to retrieve auth token (OAuth 2.0 preferably)

Upvotes: 3

Views: 1188

Answers (1)

Alex Reynolds
Alex Reynolds

Reputation: 96937

The OAuth site lists several options for Objective-C, including MPOAuthConnection. You could probably tweak it to use with ASIHTTPRequest or similar to place a request with credentials.

Upvotes: 1

Related Questions