I see similar posts here related to this topic but none of them gives a straight answer.
I want to invite facebook friends to my wp7 application. I have created a friend selection control for this, and after that I would like to send an application request to those friends. This is how I tried:
var arguments = new Dictionary<string, object>();
arguments["access_token"] = _accessToken;
arguments["message"] = "Test";
foreach (string tag in _selectFriendContent.Tags)
{
fb.PostAsync(string.Format("{0}/apprequests",tag), arguments);
}
//_selectFriendContent.Tags contains the selected friends ID-s.
The result here:
void fb_PostCompleted(object sender, FacebookApiEventArgs e)
{
dynamic result = e.GetResultData();
Dispatcher.BeginInvoke(() => NavigationService.GoBack());
}
Result = (OAuthException) (#2) User can't send this request: Unknown error;
Another way I have been trying is:
var arguments = new Dictionary<string, object>();
arguments["access_token"] = _accessToken;
arguments["message"] = "Test";
foreach (string tag in _selectFriendContent.Tags)
{
if (!arguments.ContainsKey("tags"))
{
arguments["IDS"] = tag;
continue;
}
arguments["IDS"] += "," + tag;
}
fb.PostAsync("me/apprequests", arguments);
In this case I get an Id for the result, from which I assume it was ok, but still my friend whos Id I added "arguments["IDS"] = tag;" here didn't get anything on facebook.
What am I missing here?