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.

Is it possible to do a post to someone's wall as someone else. For example Person A posts on person B's wall. Just as if 'A' wrote directly on B's wall.

so far I have it working for someone posting on their own wall.

Thanks for any help

share|improve this question

1 Answer

up vote 1 down vote accepted

Try this:

        var app = new FacebookApp(ACCESSTOKEN);
        var args = new Dictionary<string, object>();
        args.Add("message", "Hello you");

        app.Api("/[Friend Id]/feed", args, HttpMethod.Post);

Honesty, I can't try it now, but I hope it's working.

share|improve this answer
And probably you have to deal with the user permissions. – laszlokiss88 Jul 11 '12 at 9:07

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.