I'm using a Facebook request dialog in my app.
FB.init({
appId : 'app_id',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
$('.facebook_request').live('click',function(){
FB.ui({
method: 'apprequests',
message: 'message',
to: 'user_id'
});
return false;
});
This works so far. The request pops up in the current page, and it gets created correctly. But I'm not sure how to access the return data (id of the newly created request) as mentioned here. How can I get access to it so I can save the id?