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.

hi I got problems with the frictionless requests in facebook.

My Code:

<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US"
      xmlns:fb="https://www.facebook.com/2008/fbml">
    <head>
        <script src="http://connect.facebook.net/en_US/all.js"></script>
        <title>Rose Fan Rally</title>
    </head>
    <body onload="FB.Canvas.setSize();">
        <div id="fb-root"></div>
    <script type="text/javascript">
    FB.init({
        appId  : 123456789,
        status : true,
        cookie : true,
        frictionlessRequests : true,
        oauth: true
    });

    function sendChallengeRequestToRecipients() {
        FB.ui({method: 'apprequests',
            message: 'Request1.',
            to: 123465789
        }, requestCallback);
    }

    function sendResultRequestToRecipients() {
        FB.ui({method: 'apprequests',
            message: 'Request2.',
            to: 123456789
        }, requestCallback);
    }

    function requestCallback(response) {
        // Handle callback here
    }
        sendChallengeRequestToRecipients();
</script>
</body>
</html>

As soon as the page loads, i get a Browser Pop-up and not a internal FB iframe Window. And there is no checkbox for choosin Frictionless Request in future in the dialog box.

Can anybody tell me why? Am I somehow using the old Request Dialog?

Thanks for your help!

share|improve this question
ok, I added the code into a different page and called the js functions through another js. And suddenly it worked perfectly O.o . Actually I have no clue why. But case closed... – shooby Jul 20 '12 at 6:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.