I'm building a Website (PHP), API (PHP) and a native iPhone app. I want users to login with their Facebook account so they can post reviews / upload photo's via the Website or iPhone app to our server/database. This will also save me time to create a complete user registration system.
I'm trying to figure out how to create a uniform architecture for this kind of a solution. I'm thinking about the following thing:
Registration:
- Create a database table containing my users (table will have these fields: id, facebook_uid, firstname, lastname)
- iPhone App login scenario: user logs in via Facebook; presses on allow to give permission for my app; returns to App with access_token (which is stored on his phone). After that makes an call to my own API to register the user (if not registered yet in database) with these information: facebook_uid, firstname and lastname.
- Website login scenario: user login via Facebook; redirects to my configured return url and registers the user (if not yet in database) with these values facebook_uid, firstname and lastname
Posting a product review
Iphone App: Make an call to my API with the following parameter input: review_text, facebook access_token. My API will then make server side the API call to facebook to get facebook_uid. When I have retrieved the facebook_uid I insert into to the database the review record for this facebook user. (Instead of sending the Facecbook access_token I could have sent directly also the facebook_uid value to my API. But I thought this may be less secure, because anyone could then insert review on behave of other user if they know their facebook_uid)
Website: With help of the Facebook Connect PHP library FB login session is available so I can insert server side directly the review by reading the sessions facebook_uid.
Is this a correct and safe way of using Facebook as login for your own platforms? Or are there any other PHP modules/libraries I could use to simplify this?