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!