通过访问令牌获取 Facebook 应用程序
Get Facebook app by access token
我的数据库中存储了一个 Facebook 访问令牌,我用它从 Facebook 检索数据。
此访问令牌已由我的一个应用程序注册,但我不知道是哪个应用程序。
有没有办法找出我的哪些应用拥有此令牌?
我试过https://graph.facebook.com/me?access_token=xxx没有成功。
{
"error": {
"message": "An active access token must be used to query information about the current user.",
"type": "OAuthException",
"code": 2500
}
}
(我确定这个令牌仍然是 "active" 如果我的意思是活跃的 "still able to retrieve data from the Facebook REST API" )
根据@WizKid 的评论:
Facebook 上有一个工具,旨在帮助识别访问令牌的所有者(以及更多信息,例如到期日期或可用范围)
下访问
我的数据库中存储了一个 Facebook 访问令牌,我用它从 Facebook 检索数据。 此访问令牌已由我的一个应用程序注册,但我不知道是哪个应用程序。
有没有办法找出我的哪些应用拥有此令牌?
我试过https://graph.facebook.com/me?access_token=xxx没有成功。
{ "error": { "message": "An active access token must be used to query information about the current user.", "type": "OAuthException", "code": 2500 } }
(我确定这个令牌仍然是 "active" 如果我的意思是活跃的 "still able to retrieve data from the Facebook REST API" )
根据@WizKid 的评论:
Facebook 上有一个工具,旨在帮助识别访问令牌的所有者(以及更多信息,例如到期日期或可用范围)
下访问