I have using nuxt-auth in my nuxtjs project. enter image description here
I have using nuxt-auth in my nuxtjs project. enter image description here
You need to specify the responseType as 'token id_token':
strategies: {
google: {
clientId: process.env.CLIENT_ID,
codeChallengeMethod: '',
responseType: 'token id_token',
},
},
I had the same problem and found the answer here: https://stackoverflow.com/a/64080397/39281