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.

Just trying to post feed to my wall, but got errors message

An error occurred. Please try again later.

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.

here is my code

var app_url = http://xxx.xxx.xxx.xxx;
var fb_app_id = xxxxxxxxxx;
// When init
FB.init({
    appId: fb_app_id, 
    status: true, 
    cookie: true, 
    xfbml: true, 
    frictionlessRequests: true, 
    useCachedDialogs: true, 
    oauth: true
});
// When posting
FB.ui({
    method : 'feed',
    link : 'http://apps.facebook.com/' + fb_app_id,
    redirect_uri : app_url + 'facebook/index.php',
    picture : app_url + 'icon/fb_feed_lvup.png',
    name : 'My Game',
    caption : 'Player level up to ' + level + '!!',
    description : 'Congratulation :D'
},
function callback(response) {
    // Callback after feed posted...
    console.log('publishStory UI response: ', response);
});

I doesn't know that it's related to my app setting which not set "App Domains" or not ?

I can't set it because the host doesn't have Domain name I'm just using IP address to set an URL setting.

share|improve this question
what's the app_url? – Shadowfax Jan 31 at 5:37
It's a url of my website. – Ittipon Teerapruettikulchai Jan 31 at 7:37
The problem is that you have not given the same url (app_url) in the app settings . Please check again and define the App Domain also. – Shadowfax Jan 31 at 7:38
Okay, but I can't set App Domain as IP address and my customer didn't provided Domain name so may I have to test on my hosting, Thank you for your attention :) – Ittipon Teerapruettikulchai Jan 31 at 7:45
1 thing, the app_url must be http://apps.facebook.com/APP_NAME, why are you redirecting him from the app to the website? – Shadowfax Jan 31 at 7:48
show 4 more comments

1 Answer

up vote 0 down vote accepted

Try this-

Copy the Site URL from the app settings to the redirect_url and then check if it works.

I checked, else everything is fine.

share|improve this answer
Yeah it's now working, thank you :D – Ittipon Teerapruettikulchai Jan 31 at 8:47

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.