I updated the Facebook SDK to 6.0.10 and some code that used to work is not working anymore. I used to post on users\' wall use the method below.
The class FacebookC
You will need to get the app access token by making the request.
var fb = new FacebookClient(); dynamic result = fb.Get("oauth/access_token", new { client_id = "app_id", client_secret = "app_secret", grant_type = "client_credentials" }); fb.AccessToken = result.access_token;