I'm using the facebook send dialog, and want to redirect to a URL when the dialog closes.
FB.ui({
method: 'send',
link: 'http://***.com',
redirect_uri: '****', // publicly available URL
description: '***',
picture: '***',
to: userId
},
);
The message sends and the iframe closes, but does not redirect. Can I uses FB.ui for this, or do I need to build in another callback function?