I want to send Facebook friend invitations to some of our friends list without using FBML tags (<fb:request ....)
I am writing code in ASP.NET using fbServices.
How can I send friend requests without using FMBL tags?
|
I want to send Facebook friend invitations to some of our friends list without using FBML tags ( I am writing code in ASP.NET using fbServices. How can I send friend requests without using FMBL tags? |
||||
|
|
|
Friend requests cannot be done through the Facebook API. The FBML fb:request-form tag is the only way to do this. |
|||
|
|
|
I spent a great deal of time looking, and finally came accross a very simple solution. Using the Facebook Javascript API you can do a friend request with:
The callback script can then simply performs an ajax call to your server where you save info about the action, if needed. You can test this by using the javascript console app on Facebook: http://developers.facebook.com/tools/console Paste in the script above, including the tags, or click the "Examples" button on the bottom of the text area and find the "fb.ui — friends.add" example. |
|||
|
|
|
fb:request-form is now obsolete and will be deprecated eventually. The new way, announced on 27 January 2011, is the Requests Dialog. |
|||
|
|
|
Facebook does not allow you to programatically send friend requests. I suggest taking a look at their API |
||||
|
|
|
Okay. Years later, things has changed: https://developers.facebook.com/docs/reference/dialogs/
|
|||
|
|
|
You can send requests to friends without using FBML as follows
`FB.ui({
method: 'apprequests',
message: 'This is my applicaiton',
title: 'Application Request without FBML',
filters: 'all'
},
// Callback function returning the list of requestObj Ids
function(response){
}
);`
For more info you could refer Wiki Page for apprequest graph API |
||||
|
|