vote up 2 vote down star

I would like to send an invitation request from my Facebook application written in C#.

Here is what I tried:

_fbService.API.notifications.sendEmail(DataList1.DataKeys[e.Item.ItemIndex].ToString(),"Invitation to play a game", "You are invited to play the game","");

This does not work, it only sends a notification, not a request.
What am I doing wrong?

flag

16% accept rate
where are all the editors when you need them? – tim May 28 at 14:23
What do u mean with editors when i need them??? – Ahmy May 28 at 14:26
it's been edited. upvoted your question. it is much more readable now. – tim May 28 at 15:10
Tim: You are an editor too. You could have fixed it up yourself instead of whined about it. – TheTXI May 28 at 15:13
Wasn't whining. was wondering where the prolific editors were. It was a useless comment, I agree. I am not a facebook programmer and was not sure my edits would actually help/be correct. – tim May 28 at 15:17

3 Answers

vote up 1 vote down

If you are asking how you can send invitations to users who have not authorized your application (i.e. not inviting your application users to use a new feature or participate in an activity), then you can't with the API.

From the API documentation - Notifications.sendEmail:

Sends an email to the specified users, who have both authorized your application and granted it the email extended permission.

The API function that did allow this was Notifications.sendRequest but it has been disabled, perhaps due to consideration of abuse and security. See the documentation for the alternative.

link|flag
vote up 0 vote down

Which .NET Facebook API are you using?

link|flag
I am using .Net2008 to integrate with facebook API using C# language – Ahmy Jun 2 at 7:00
vote up 0 vote down

Have you tried taking a look at facebook.codeplex.com/. it may be of help in answering your question as to how to send a request, and may be a different approach to use to simplify the api for use with .net.

link|flag
It's not useful i have searched over it and no solution – Ahmy May 31 at 8:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.