我正在使用facebook发送对话框,并希望在对话框关闭时重定向到URL。
FB.ui({
method: 'send',
link: 'http://***.com',
redirect_uri: '****', // publicly available URL
description: '***',
picture: '***',
to: userId
},
);
邮件发送并且iframe关闭,但不会重定向。我可以使用FB.ui,还是需要构建另一个回调函数?
答案 0 :(得分:0)
如果发送消息成功,则用户将被重定向到redirect_uri。否则,将显示错误。
根据facebook文档,send方法没有回调
请参阅:https://developers.facebook.com/docs/reference/dialogs/send/