Reputation: 193
I am using facebook C# SDK 5.3.2 for desktop application. I created an application on the facebook to get AppId. I can get accsess token using this appid. And i can also post my facebook wall. But i also want to post my friends's wall. How can i do that without using AppId? My senerio is add all friends to app getting accsess token and post mesages to their walls using this tokens. Is that possible? How can do that?
Upvotes: 1
Views: 567
Reputation: 47956
You have to get authentication from users in order to retrieve an access token that will work for them. You have to use your APP_ID in order to authenticate your application with a user.
Upvotes: 1