Search code examples
facebookfacebook-graph-apifacebook-social-plugins

Facebook invite feature not working on my website


I tried to integrate facebook invite feature as follow! when I clicked on button click here it not shows me a dialog for me ( real is it shows about 0.1 second then it hiddens) ... Anybody can help me resolve this problem ! thank you!
this is my code:

    <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>

Solution

  • You should use the Send dialog to achieve what you want to do.

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