0

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

Devjosh
  • 6,450
  • 4
  • 39
  • 61
Wesley Skeen
  • 7,977
  • 13
  • 42
  • 56

1 Answers1

1

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.

laszlokiss88
  • 4,001
  • 3
  • 20
  • 26