'daki id_token ve access_token arasındaki fark nedir? 0 0 A (refresh tokens). Bu bağlantıyı, biz birçok döndü parametreleri görebilirsiniz: Kullanıcı profili veri almak içinAuth0
lock.showSignin({
authParams: {
scope: 'openid offline_access'
}
}, function (err, profile, id_token, access_token, state, refresh_token) {
// store refresh_token
});
Apparently, access_tokens kullanılabilir. Ama bu durum oauth'a özgü gibi görünüyor ve auth0'ın openid kullandığını düşündüm.
id_token
ve access_token
arasındaki fark nedir?
Auth0 dokümantasyon https://auth0.com/docs/tokens – Jason