分享完成后如何关闭发送对话框?

How to close send dialog, when finished share?

我用这个方法来分享,

 /dialog/send?
  app_id=123456789
  &link=mylink
  &redirect_uri=theurl

我不想共享 window 重定向,我只想关闭它,完成后我该怎么办?

使用 JavaScript SDK:

FB.ui({
  method: 'send',
  link: 'your-link',
});

发送对话框将自动关闭。资料来源:https://developers.facebook.com/docs/sharing/reference/send-dialog

关于 JS SDK 的更多信息:https://developers.facebook.com/docs/javascript