在 Auth0 中,您可以使用刷新令牌。在这个链接中,我们可以看到很多返回的参数:
lock.showSignin({
authParams: {
scope: 'openid offline_access'
}
}, function (err, profile, id_token, access_token, state, refresh_token) {
// store refresh_token
});
显然,access_tokens可用于检索用户配置文件数据。但这似乎是oauth特有的,我认为auth0使用openid?
id_token
和 和有什么不一样access_token
?