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 am writing a javascript app which takes login and password of Facebook account and checks privacy settings. For that reason I registered an application and got appID. After the Facebook SDK is loaded and app is initialized I invoke FB.login() function and get an error: An error occurred with 'APP'. Please try again later. API Error Code: 191 API Error Description: The specified URL is not owned by the application Error Message: Invalid redirect_uri: Given URL is not allowed by the Application configuration.

Is there another way to connect to Facebook account and get required settings or what can be done to prevent the error?

share|improve this question

closed as not constructive by CBroe, Bali C, Adrian Faciu, hochl, Wooble Oct 16 '12 at 14:01

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Step 1 - Use below javascript code inside your html.

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({ appId  : 'appId', status : true, cookie : true, xfbml  : true });

    function updateButton(response) {
        button = document.getElementById('facebookConnect');

        if (response.authResponse) {
            //user is already logged in and connected
            FB.api('/me', function(info) {                  
                login(response, info);
            });
            // we don't want this right now.    
            /*button.onclick = function() {
                FB.logout(function(response) {
                    logout(response);
                });
            };*/
        } else {
            //user is not connected to your app or logged out

            button.onclick = function() {

                FB.login(function(response) {
                    if (response.authResponse) {
                        FB.api('/me', function(info) {
                            login(response, info);
                        });
                    } else {
                        // if needed then can implement this
                        //user cancelled login or did not grant authorization                           
                    }
                }, {scope:'email,user_birthday,status_update,publish_stream,user_about_me'});
            }
        }
    }

    // run once with current status and whenever the status changes
    FB.getLoginStatus(updateButton);
    FB.Event.subscribe('auth.statusChange', updateButton);
  };

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

Step 2 - The button click event to be given in html

<a id="facebookConnect"></a>

Step 3 - handle login function in your javascript file ( can be jquery or where you are handling all your events )

function login(response, info){
    if(response.authResponse && response.status == "connected"){
              // your code here or send the token
              // info.id , response.authResponse.accessToken on server side.
        }
}

Thats it you will be able to login to facebook and get the user information. Also make sure that you replace the appId with your appId. I have just put that as appId as don't want to disclose it.

share|improve this answer
Thank you for reply, but I get the same error. – Arus Hakobyan Oct 16 '12 at 13:48
What is the site URL you have mentioned in your app settings ? make sure that is correct. – Sanket Oct 16 '12 at 14:22
But my app is local, so I haven't mentioned URL. Should I use Heroku in this case? – Arus Hakobyan Oct 16 '12 at 15:29

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