Facebook graph API wall post alternative

I am using a class based on the Hernan Amiune library for the Facebook GUI so that the website user can write friends from my code to their walls. With recent changes in February, the Graph API method is no longer available for this.

Apparently I need to use the Feed dialog now, but can I call this C # code? Does anyone have a sample or alternative that I can use?

In short, I can write someone a wall on behalf of another user using only server-side code.

+4
source share
2 answers

In short, can I write someone a wall on behalf of another user using only server-side code?

Starting February 6th, violating the changes , you can no longer send messages to the wall of friends of users through the Graph API. This means that you cannot write on the wall of someone on behalf of another user in any code language or SDK. You must either use the Feed Dialog or use mention tags or action tags.

From the roadmap for Facebook developers:

Stories that include friends through a user mentions tagging or action tags will be displayed on the friends timeline (assuming a friend approves the tag).

+5
source

You looked at โ€œChannel Informationโ€ which details a simple simple javascript example and an even simpler direct URL example to convert or use C # seems to be an extremely trivial task.

See Related Answer

+1
source

All Articles