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'm using the face javascript sdk with oAuth 2.0. I refereed this link for external website facebook login for my site https://developers.facebook.com/docs/reference/dialogs/oauth/.

Now it shows Web page not available in my pop up and I checked with link above and there is also the same problem with the facebook domain. Is there a problem with facebook or am I doing something wrong? Please help me to figure this out.

My code:

$(document).ready(function () {
$('#divFBButton').find('.fb_button').prop('disabled', true);

var FBAPPID = $('#ctl00_contentPlaceHolderRight_hdnFBAppID').val();
window.fbAsyncInit = function () {
    console.log('http://'+window.location.host+'/Dashboard/channel.html'+'channel URL');
   // console.log (window.location.host+'host checking');
    FB.init({
       appId: FBAPPID, cookie: true,
        status: true, xfbml: true, oauth: true
    });
};

(function () {
    var e = document.createElement('script'); e.async = true;
    e.src = document.location.protocol
+ '//connect.facebook.net/en_US/all.js';
    document.getElementById('fb-root').appendChild(e);
} ());




<div id="fb-root">
        </div>
        <fb:login-button scope="manage_pages,offline_access,read_insights" size="large" style="opacity: .01 !important;
            width: 250px !important; line-height: 31px !important; margin-top: 0 !important;"
            onlogin="getPages()"> Sign In With Facebook Account </fb:login-button>
    </div>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.