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 having a problem connecting my website with a Facebook page.

The error is:

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.

My app configuration settings are:

The configuration of page code is:

fbconfig['baseurl']    = "http://mercatdocasio.hol.es/index.php"

Where is the problem?

In my localhost works but in my website doesn't work...

share|improve this question

2 Answers

When you request a permission dialog, you provide a redirect_url with it. This URL should be in your application scope.

Try to set on Facebook Developers Application settings screen domain of your application to mercatdocasio.hol.es.

If it will not work, then your redirect_url in permission dialog is invalid (specifies other domain).

share|improve this answer
The problem is the configuration, because in my localhost works... – user2011445 Jan 26 at 15:53

try this if work with encoded redirect url

window.open('https://graph.facebook.com/oauth/authorize?client_id=' + apikey + '&redirect_uri=' + redirect_uri + '&scope=email','','scrollbars=no,menubar=no,height=400,width=800,resizable=yes,toolbar=no,status=no');

or get on click redirect it redirect url must be encoded
$redirect_url = urlencode('http://mercatdocasio.hol.es/') //required

header('location:https://graph.facebook.com/oauth/authorize?client_id=yourapikey&redirect_uri='.$redirect_url.'&scope=email');
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.