以前はアプリケーション アクセス トークンが機能していましたが、重大な変更の後、アプリケーションが機能しなくなりました。私が得ているエラーは
(#200) Must have a valid access_token to access this endpoint
アクセストークンに以下のコードを使用しました
var fb = new FacebookClient();
dynamic result = fb.Get("oauth/access_token", new {
client_id = XXXX,
client_secret = XXXXX,
grant_type = "client_credentials",
scope = "publish_stream"
});
この問題を解決するにはどうすればよいですか?