Facebook 邀请功能在我的网站上不起作用

Facebook invite feature not working on my website

我试过如下整合facebook邀请功能!当我点击按钮 click here 时,它没有为我显示一个对话框(真的是它显示大约 0.1 秒然后隐藏)......任何人都可以帮助我解决这个问题!谢谢!
这是我的代码:

    <html>
      <head>
        <title></title>
      </head>
    <body>
    <script src="http://connect.facebook.net/en_US/all.js"></script>
    <script>
    FB.init({
    appId:'233108243711708',
    cookie:true,
    status:true,
    xfbml:true
    });

    function InviteF()
    {
    FB.ui({
    method: 'apprequests',
    message: 'Welcome to 2my4edge',
    });
    }

    </script>

    <a href="#try" onclick="InviteF();"> 
    Click Here
    </a>
</body>
</html>

您应该使用“发送”对话框来实现您想要执行的操作。

https://developers.facebook.com/docs/sharing/reference/send-dialog