I want people to be able to login to my website with their Google and Facebook accounts. I have already done some research about Facebook.
This tutorial for JavaScript was quite useful. The only thing bugging me at the moment is the application id in the source code:
FB.init({
appId : 'YOUR_APP_ID', // App ID
channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
If the id is public, wouldn't this enable anybody that would view the page source the use the application?
I have never done this before, my idea is to get the id of the facebook user which will be a reference to a user profile in my website. I plan on creating a table facebook_has_user in which I will store the connection between a user_profile and his facebook. I plan on doing something similar for Google. Is this a good idea? I know I don't have a concrete question, but I would like someone that has done this before to tell me how they have done it.