从谷歌获得身份验证后,它将我重定向到/login?state=
- 我是从文档中实现的
我的问题是为什么我没有登录?此中没有用户数据$authloggedIn属性也是false还有我错过的进一步的步骤吗?
nuxt.config.js
auth: {
strategies: {
google: {
clientId: process.env.GOOGLE_CLIENT_ID,
responseType: 'code',
codeChallengeMethod: '',
},
},
}
登录.vue
this.$auth.loginWith('google');
我通过替换得到了修复
responseType: 'token id_token',