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 aware this is a very frequently asked question but I'm really new to this whole app development thing.

I am the admin of a facebook page and I want to add a tab to the side of the page. So I followed facebook's instructions and created the page tab, but when I tried to access the "add to page" dialog box, I got API Error Code 191:

API Error Description: The specified URL is not owned by the application
Error Message: redirect_uri is not owned by the application.

The URL I was using for the box to appear was: https://www.facebook.com/dialog/pagetab?app_id=317467938291427&display=popup&next=https://www.facebook.com/287sqnatc/contact

(The contact at the end is the URL for the app I wish to add.)

Where have I gone wrong, and can someone explain it in simple 5-year-old terms?

share|improve this question
I have re-tagged your question (and slightly changed the markup syntax), the tags you selected were way too generic to get the right audience :o) – Seki Jan 16 '12 at 14:47

1 Answer

next (or redirect_uri) parameter you pass to Add Page Tab Dialog should contain either URL owned by your application or special URL https://www.facebook.com/connect/login_success.html (intended to be used in desktop applications).

You can use FB.ui method of JS-SDK with method pagetab as shown in example of Add Page Tab Dialog documentation this will automatically provide redirect_uri for dialog and allow user to add page tab without leaving your application.

share|improve this answer
That doesn't work; throws the error This application does not support integration with your profile. – Fabdrol Mar 11 at 13:11

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.