I am trying to integrate facebook login with my website. I am following this link:
https://developers.facebook.com/docs/facebook-login/getting-started-web/
There, it says that " Replace YOUR_APP_ID with the app ID noted in Step 1 above and WWW.YOUR_DOMAIN.COM with your own domain. " for the following piece of code:
window.fbAsyncInit = function() {
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
});
So my question is, what is my domain here? How can i find out what my domain is? Actually, what does this mean? Can anyone help?
Thanks