根据 https://developers.facebook.com/docs/facebook-login/access-tokens
可以使用此Graph API调用生成App访问令牌 GET / oauth / access_token? CLIENT_ID = {应用ID} &安培; client_secret = {应用秘密} &安培; grant_type = client_credentials
当我通过.Net应用中的浏览器控件发出时,我会返回此网址以及提示我登录的网页
https://www.facebook.com/oauth/accesstoken?client_id=&安培; client_secret =安培; grant_type = client_credentials
登录后,我得到三个响应,一个接一个地在Web控件中如下:
https://www.facebook.com/ai.php?aed=< 1496数字哈希> https://www.facebook.com/ai.php?aed=< 1411数字哈希> https://www.facebook.com/oauth/accesstoken?client_id=&安培; client_secret =安培; grant_type = client_credentials
没有一个& access_token参数。
如何生成App访问令牌。我做错了什么?