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 have the following code.

 public void PostToWall(string message, string targetId)
    {
        dynamic parameters = new ExpandoObject();
        parameters.message = message;
        parameters.target_id = targetId;
        dynamic result = _fbApp.Api("/me/feed", parameters, HttpMethod.Post);
    }

Which works fine when the targetId is the id of the user authenticated.

However, when targetId is that of one of the authenticated users friends it doesn't work.

Anyone have any idea why?

share|improve this question

1 Answer

up vote 1 down vote accepted

I would suspect because you're trying to post to your feed, not the friend - /me/feed

The FB GraphAPI specifies that you POST to http://graph.facebook.com/PROFILE_ID/feed.

share|improve this answer
tried that before with no luck. I'm thinking the target_id parameter is in the API for a reason. But I can't figure out how to make it work. – RekrowYnapmoc Mar 8 '11 at 2:25
You might want to switch to the official FB C# API. developers.facebook.com/blog/post/395 It appears to be a thin wrapper around the GraphAPI. If you look, the GraphAPI for posting to a feed doesn't even have target_id - that's something from the old APIs – Brian Roach Mar 8 '11 at 2:35
You're totally right.... don't know what I was trying while I was doing it before. Easy to think yourself around in circles. – RekrowYnapmoc Mar 8 '11 at 2:54

Your Answer

 
discard

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

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