1

我正在构建一个基于 NuxtJS 的前端应用程序,并以 Strapi 作为后端。我已经在 Strapi 上配置了 google 提供程序。但是,一旦将它与前端连接起来,我就会遇到问题。基本上,登录后,它会将我重定向到带有令牌的前端 URL,而不是直接到主页。

下面是我的 nuxt-config 代码:

auth: {
  strategies:{
    google: {
      clientId: 'google_client_id',
      codeChallengeMethod:'',
      endpoints: {
        authorization: 'https://strapi.backend.com/connect/google',
        token: 'https://strapi.backend.com/token',
        userInfo: 'https://strapi.backend.com/users/me'
      },
      token: {
        property: 'id_token',
        type: 'jwt',
        maxAge: 1800
      },
      responseType: 'token',
      grantType: 'authorization_code',
    }
  }
}

登录.vue 代码

export default {
  methods: {
    async google(){
    await this.$auth.loginWith('google')
  }
}

如果我遗漏了什么,请告诉我。

4

1 回答 1

0

你试过用redirect钥匙吗?

auth: {
  redirect: {
    home: '/',
  },
  ...
}
于 2021-07-20T00:01:30.777 回答