我在nuxtjs项目中使用nuxt-auth。enter image description here
发布于 2021-07-07 21:36:03
您需要将令牌指定为‘responseType id_responseType’:
strategies: {
google: {
clientId: process.env.CLIENT_ID,
codeChallengeMethod: '',
responseType: 'token id_token',
},
},我遇到了同样的问题,并在这里找到了答案:https://stackoverflow.com/a/64080397/39281
https://stackoverflow.com/questions/66095900
复制相似问题