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