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.

By mistake, I removed my App from my account which of course disabled the access token. I have been following the steps from Facebook's Authentication Doc page to get a new access token and finally had success but to no avail; the access token, actually the several tokens I have generated do not work.

Can someone provide some direction?

share|improve this question

1 Answer

up vote 0 down vote accepted

If you are using the javascript SDK - this is your best path:

    <div id="fb-root">
</div>
<script type="text/javascript">
    (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);
    } ());

    window.fbAsyncInit = function () {
        FB.init({ appId: 'YOUR_APP_ID',
            status: true,
            cookie: true,
            xfbml: true,
            oauth: true
        });

        FB.getLoginStatus(function (response) {
            if (response.status === 'connected') {
                var uid = response.authResponse.userID;
                //you access token is right below
                var accessToken = response.authResponse.accessToken;
                console.log('connected and allowed');
            } else if (response.status === 'not_authorized') {
                console.log('connected but not allowed');
                top.location.href = "https://www.facebook.com/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=YOUR_RETURN_URL&scope=user_photos,publish_actions";
            } else {
                // the user isn't even logged in to Facebook.
                top.location.href = "https://www.facebook.com/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=YOUR_RETURN_URL&scope=user_photos,publish_actions";
            }
        });
    };


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