idtoken上的AWS Cognito Timeout

时间:2017-08-02 15:06:21

标签: amazon-web-services jwt aws-cognito refresh-token

我是AWS认知身份提供商的新手,我正在努力解决一小时后应用“无响应”的问题。

我已经跟踪了以下异常:

登录令牌无效。令牌过期xxx> YYY

话虽如此,我正在尝试使用刷新令牌来更新我的ID /访问令牌。

我正在尝试使用以下方法:

http://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminInitiateAuth.html

new AWS.CognitoIdentityServiceProvider({ apiVersion: '2016-04-18' }).adminInitiateAuth(params,cb)

我发送以下内容作为参数:

    {  
   "AuthFlow":"REFRESH_TOKEN_AUTH",
   "ClientId":"xxx",
   "UserPoolId":"ap-northeast-2_7wGKApTQV",
   "AuthParameters":{  
      "REFRESH_TOKEN":"ommited, but valid",
      "USERNAME":"luizhenrique.rolim@gmail.com"
   }
}

但是,我得到以下错误,以及null AuthenticationResultType对象

code:"CredentialsError"
message:"No credentials to load"
  1. 我是否在正确的道路上刷新idtoken?
  2. 为什么我对adminInitiateAuth的调用失败?
  3. 由于

0 个答案:

没有答案