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 am building an iOS app that requires Facebook authentication for connecting with other friends in the app. The app has a backend built in Ruby on Rails. The Rails sight already has a login page that redirects to Facebook, handles the authentication, and returns the UID and token back to the rails for db storage. I was looking into the Facebook SDK for iOS, but then I did some research and saw that passing the Facebook UID and the token to the server could lead to some security issues and would need to be done with care. Some of the research here. I need the token and the UID server-side in the database.

So, as a possible work around, I thought I could just use my existing Rails login page and display it in a UIWebView. Is there any reason that this would be ill-advised? Is there a reason I need to use the SDK inside the iPhone app if my backend can handle all Facebook requests I require? I've seen a few place people claim to dislike webivews for login pages but with no explanation why. The login page or user sign up page both work perfectly well on my backend (ie they get me the token and UID and I can store or create a new user). Thanks for the help!

share|improve this question
Unless I'm mistaken, you should be fine to pass an access_token via SSL, and verify its validity upon arrival. – Tommy Crush Dec 26 '12 at 3:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.