我正在尝试检索身份验证代码的访问令牌。我使用以下格式:
获得https://graph.accountkit.com/v1.0/access_token?grant_type=authorization_code&code=AUTH_CODE&access_token=AA|APP_ID|APP_SECRET
其中auth_code、app_id和app_secret是它们各自的值。下面是我用来组装这个url的python:
url = 'https://graph.accountkit.com/v1.0/access_token?grant_type=authorization_code&code=' + authcode + '&access_token=AA|' + facebook_app_id + '|' + facebook_app_secret
但我一直有以下错误:
{ error: { message: "Error verifying the token in the 'access_token'", type: "OAuthException", code: 190, fbtrace_id: "GNhScPPp22t" }}
我试着用谷歌搜索FBTrace的ID,但实际上什么也没找到。我不明白为什么它说它不能在“访问令牌”中验证令牌,我完全按照他们的文档所说的做。
有人知道我的问题在哪里吗?
最佳答案
他们在accountkit上使用了不同于facebook的应用程序机密。