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 want users to login with their facebook account through devise from iphone app.

consider when i send the id and password as

curl -H 'Content-Type: application/json'   -H 'Accept: application/json'   -X POST http://localhost:3000/users/sign_in  -d "{'user' : { 'email' : 'sample@gmail.com', 'password' : 'asdfghjkl'}}"

then it produces

{"user":{"authentication_token":"34734t374hfjeg266272","email":"sample@gmail.com"}}

I use the authentication token for the next request as

curl -L 'localhost:3000/posts.json?auth_token=34734t374hfjeg266272'

and i get the values from the table as json and similarly how can i do it with facebook account in devise?

I have omniauth used in my web app and i could login as facebook user from my web app but how could i do it for iphone app?

share|improve this question

1 Answer

You may use iOS6's social framework.

WWDC 2012 Session Videos“Integration With Facebook, Twitter and Sina Weibo”

(https://developer.apple.com/videos/wwdc/2012/?id=306)

Or, you may use Facebook SDK.

http://developers.facebook.com/ios/

Or, you may use oauth library like gtm-oauth

gtm-oauth (Google Toolbox for Mac - OAuth Controllers)

http://code.google.com/p/gtm-oauth/wiki/

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.