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 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.

share|improve this question
Don't facebook/google require you to attach a domain to the app id, so people can't extract it and use it on their own site? – CodeMoose Mar 5 at 15:12

2 Answers

Yes, your application id will be visibile while using JavaScript. But no, it doesn't make it vulnerable, because you can view any app id. For instance, SongPop id is 323595464361460, as you can see in https://www.facebook.com/appcenter/323595464361460!

share|improve this answer

If the id is public, wouldn't this enable anybody that would view the page source the use the application?

No. Anything secure on the server end requires your secret key, which should never be made public in source code. Additionally, things like authentication are limited to the domain in your Facebook application's settings.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.