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 have a bit of code to let users invite their friends to my site. It looks like this:

$('#invite').click(function () {
    FB.ui({ method: 'apprequests', message: "Check out ... great service ...!" });
});

When the user clicks the invite button, it pops up the apprequests dialog fine. The user selects some friends, and clicks "send requests".

However, when their friends (under apps requests) click the "Accept" button, it goes to http://www.facebook.com/4oh4.php

How can I resolve this?

share|improve this question

1 Answer

up vote 1 down vote accepted

This is logged as a bug with Facebook. One user suggests setting the "bookmark" property in the advanced app settings to the desired destination URL.

share|improve this answer
Thank you! I was beginning to wonder. Much appreciated. – Chad Sep 19 '11 at 1:33

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.