Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
in your first example, what is the type/value of tag? – BK. Nov 17 '11 at 22:18
It is the Facebook ID of a facebook friend. – Igor Mesaros Nov 18 '11 at 14:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.