Alexa:如何使用刷新令牌测试访问令牌的请求?

时间:2018-08-20 18:20:37

标签: node.js oauth-2.0 alexa alexa-skills-kit

尝试在Amazon的POST请求中找到Signature and SignatureCertChainUrl headers,以使用刷新令牌续订访问令牌。我故意将访问令牌设置为在3600秒后过期:

var res = { 
    "access_token": access_token,
    "refresh_token": refresh_token,
    "expires_in": 3600,
    "token_type": "bearer",
    "state": state,
    "scope": myScope
}

然后在访问令牌本应过期后向Alexa进行查询。但是,亚马逊没有按要求完成刷新令牌的请求(引用the docs,“ Alexa还使用刷新令牌来调用[访问] URI,以在先前的令牌到期时获得新的访问令牌”) 。

如何测试我的技能对使用刷新令牌获取新访问令牌的反应?

0 个答案:

没有答案