I'm try to popup dialog with pre-specified addressee that way:
FB.init({
appId : 'MYAPPID',
status : true,
cookie : true,
xfbml : true,
frictionlessRequests: true
});
function sendRequestToRecipients()
{
FB.ui({method: 'apprequests',
message: 'You have just received a PP request.',
to: '100000526845569'
}, requestCallback);
}
sendRequestToRecipineds();
When the popup opens I've the error: An error occurred. Please try later
When I look at the request URL of the popup I see the following:
I think some info has not been sent:
api_key, app_id
How come? Any ideas?
Login with facebook works perfectly. Multifriend selector too.
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : 'MYAPPID', // App ID from the App Dashboard
channelUrl : '//mydomain.com/channel.html', // Channel File for x-domain communication
status : true, // check the login status upon init?
cookie : true, // set sessions cookies to allow your server to access the session?
xfbml : true, // parse XFBML tags on this page?
frictionlessRequests: true
});
};
// Load the SDK's source Asynchronously
(function(d, debug){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js";
ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/ false));
function sendRequestToRecipients() {
FB.ui({method: 'apprequests',
message: 'You have just received a PP request.',
to: '100000143396036'
}, requestCallback);
}
function sendRequestViaMultiFriendSelector() {
FB.ui({method: 'apprequests',
message: 'My Great Request'
}, requestCallback);
}
function requestCallback(response) {
// Handle callback here
}
</script>
That's how its made here