var json = new WebClient().DownloadString("https://graph.facebook.com/me?access_token=" + app.AccessToken);
当我从图形api中获取其他内容时,我的accessstoken有效。但是当我尝试获取有关当前用户的信息时,我会收到错误消息:
{
"error": {
"type": "OAuthException",
"message": "An active access token must be used to query information about the current user."
}
}
用户已连接到页面上的我的应用。我错过了什么?我需要的只是他的用户ID。感谢