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.

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?

share|improve this question

1 Answer

up vote 2 down vote accepted

The request_id comes back in a callback:

FB.ui({
    method: 'apprequests',
    message: 'message',
    to: 'user_id'
}, function(response)
{
    for (i = 0; i < response.request_ids.length; i++)
    {
        alert(response.request_ids[i]);
    }
});
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.