Send facebok message to your friend with story using javascript

Hi,

Do you want to send Facebook message to your friend with story using javascript?.

Please follow the steps as following :

[Ignore this step if you have created application in Facebook and done with login  functionality]
Step 1 : Create application into Facebook, Login using javascript and get access token :
http://narendrajarad.blogspot.in/2014/07/facebook-login-using-javascript.html



Finally use this below code to "Send Facebook message to your friend with story using javascript":

<script>
        function sendFacebookMessage(FacebookuserId ) {
            FB.ui({
                app_id: "YOUR APP ID",
                method: 'send',
                name: "YOUR NAME",
                link: 'YOUR LINK',
                to: FacebookuserId,
                description: 'YOUR DESCRIPTION'
            });
        }
    </script>

 Note : Do you want to get FacebookuserId of your Facebook friends :  http://narendrajarad.blogspot.in/2014/07/get-facebook-friend-list-using-c.html


Comments