How to get a facebook access token using appid and app secret without any login credentials?
- 阅读更多 关于 How to get a facebook access token using appid and app secret without any login credentials?
问题 I need to get FaceBook access token using appid and app secret in C# windows application. Actually i did below coding, but getting app token only not getting the access token. how to achieve to retrieve access token.? FacebookClient client = new FacebookClient(); dynamic result = client.Get("oauth/access_token", new { client_id = "1498796747020950", client_secret = "c50341f5b4e42a595f0791467f439e38", grant_type = "client_credentials" }); var accessToken = result.access_token; 回答1: The token