Click here to Skip to main content
15,896,111 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi

I have very big problem because I have web form and i have some links about social media like facebook twitter etc.

I want to make when user click like facebook link to open that users friend invitation

How can i do this

I see so much web site with price but i dont want them i must have code or dll

I see some codes but i dont know how can i program it?

Please help me :(
Posted
Comments
[no name] 14-Mar-13 10:52am    
Did you go read the farcebook API documentation to see what they have in there to do this?
Member 10233136 28-Nov-13 16:49pm    
i want to invite facebook friends for an event using my site
yasar31 14-Mar-13 10:53am    
Yes I read this but i dont understand because i cant find what i want
[no name] 14-Mar-13 10:56am    
Then you did not look hard enough.
yasar31 14-Mar-13 11:02am    
I guess You are right

Hey Guys

Actually i figure out my problem . this is a Facebook Solution

JavaScript
<script type="text/javascript" src="http://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript">
    FB.init({
        appId: ,
        cookie: true,
        status: true,
        xfbml: true
    });
 
    function FacebookInviteFriends() {
        FB.ui({
            method: 'apprequests',
            message: 'Your Message diaolog'
        });
    }
</script>
 


Facebook>


When you want to test program please dont test on localhost because FacebookApps wants real server url's
 
Share this answer
 
Hey guys

I found web site and this guys wrote program for us to import contacts this is link i hope this link help to you []
 
Share this answer
 
Refer friend_request[^] to read the Friend Requests of a user.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900