I\'ve got what seems to be a pretty simple problem - I\'m trying to use the facebooksdk.net to publish to a users feed.
First, I install with the following command, wh
After some trial and error, I believe I've found the answer. The AccessToken
is now accessible via Session.ActiveSession.CurrentAccessTokenData.AccessToken
, which means the line of code should be:
var token = Session.ActiveSession.CurrentAccessTokenData.AccessToken;
var fbClient = new Facebook.FacebookClient(token);