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?