Application Error while loading the facebook SDK -


code on web page:

<body class="popup">     <div id="fb-root"></div>     <script>       window.fbasyncinit = function() {         // init fb js sdk         fb.init({           appid      : '476947702378530',                    // app id app dashboard           channelurl : '//www.majorforms.com/fb_channel.php?_lang_id=1',// channel file x-domain comms           status     : true,                                 // check facebook login status           xfbml      : true                                  // social plugins on page         });          // additional initialization code such adding event listeners goes here       };        // load sdk asynchronously       (function(d, s, id){          var js, fjs = d.getelementsbytagname(s)[0];          if (d.getelementbyid(id)) {return;}          js = d.createelement(s); js.id = id;          js.src = "//connect.facebook.net/en/all.js";          fjs.parentnode.insertbefore(js, fjs);        }(document, 'script', 'facebook-jssdk'));     </script> 

after loading page browser, error in firebug console:

 application error: there problem getting data application requested. application may not valid, or there may temporary glitch. please try again later. 

i don't understand. not have real app, used identifier of facebook (company) account. not want create new facebook app, want use credentials of specific facebook account. how do that?

i'm not hundred percent sure need create app use facebook sdk because in fb.init method asks facebook app id.

creating facebook app doesn't mean have app on facebook, app configuration screen on facebook developers page has specific section "website facebook login" , think thats way should go.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -