Reputation: 681
I'm developing a C# desktop app and I want to make it to post something on a facebook wall using Facebook C# SDK. It is possible to post on a user's wall or on a page without asking permission or is a must to use a token access? If yes, could someone give me an example? Thank you in advance!
Upvotes: 0
Views: 227
Reputation: 2551
No (of course) it is not possible to post on a user's wall without the user's permission. You need the publish_stream
permission: https://developers.facebook.com/docs/reference/login/extended-permissions/
Upvotes: 2