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!
access_tokenvia SSL, and verify its validity upon arrival. – Tommy Crush Dec 26 '12 at 3:04