Parameter not allowed for this message type: nonce

Viewed 596
1 Answers

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

Related