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 trying to execute callback function in FB.ui (send dialog). It called in same moment when loaded FB.ui but I want execute callback function after pressing 'send' or 'cancel' button. Is it realizable?

function callback(response) {
      alert('message was sent');
}

FB.ui({
                method: 'send',
                name: 'Dialog',
                link: 'http://***.com',
                redirect_uri: '****',
                description: '***',
                picture: '***',
                to: userId
            },
                callback(response)
            );
share|improve this question

3 Answers

up vote 1 down vote accepted

Yo, I'm not sure if it's your case, but it seems there's a bug when testing on development environments, mostly due an issue related to the port parameter in a url.

Check this out: http://developers.facebook.com/bugs/380566711996797

wasted like 2 hours freaking out due to this "bug"

share|improve this answer

The callback requires a function as a parameter. Here, you are actually calling the function.

Facebook will actually call the function that you pass it along with the response.

Rather than passing "callback(response)" as the callback parameter, just pass "callback" like this:

function callback(response) {
      alert('message was sent');
}

FB.ui({
       method: 'send',
       name: 'Dialog',
       link: 'http://***.com',
       redirect_uri: '****',
       description: '***',
       picture: '***',
       to: userId
       },
       callback
);
share|improve this answer
2  
The above is indeed correct use of the callback parameter, but requires a bit more commentary. 1) Documentation states "not all methods may have a response", which is partially true here, the callback is called whether the send dialog is sent or canceled, but none of the user input is passed to the callback. 2) My tests shows that when Send is clicked, [] (empty array) is passed to the callback, when canceled, undefined is passed, so I use the following code to branch my logic based on the user's action: if (!!response) { /* sent clicked */ } else { /* cancel clicked */ } – Mike Jarema Jun 23 '12 at 2:45

This was driving me nuts for over 2 hours on the feed dialog, then as a last ditch I added the display property

method: 'feed',
display: 'popup'

This line isn't necessary as it is default, but maybe it forces the dialog to behave correctly, and it got me out of a hole. Worth a try on the send dialog?

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.