I have a website that I am writing.
- javascript SDK works
- php SDK works
HTML looks like the following:
- signup page with fb-registration div
- login page with fb-login-button div
Flow:
- First time user ( which is registered to facebook), decide to signup. Signup page -> press "Register" -> fb iframe -> press "Continue" -> POST to PHP -> save user to DB -> reload page -> user is verified.
- First time user ( which is registered to facebook), decide to login. ( never signed-up). Login page -> press "Login with Facebook" -> blorp happens -> ????
Question:
- if my javascript SDK already know if the user logged in or not, why do I need the login button?
- is it possible to use the website facebook api without facebook app?
- isn't there a conflict between the register and login ?
- what happens on the blorp ?? and following that question, is it just for getting the user information purpose?
