gpt4 book ai didi

javascript - 带有 Auth0 提供程序的 Nuxt Auth 模块导致重定向循环

转载 作者:行者123 更新时间:2023-11-30 13:56:29 26 4
gpt4 key购买 nike

我有一个使用 Nuxt 和 @nuxtjs/auth 构建的 SPA,它被配置为通过 nuxt-auth 中的内置 Auth0 提供程序连接到 Auth0。通过 yarn dev 通过 webpack 服务器查看的生成的应用程序在登录后有一个重定向循环。登录成功,但页面随后被重定向回 /callback url 以再次通过 OAuth 流程。

这是我的 nuxt.config.js:

import colors from 'vuetify/es5/util/colors'
import dotenv from 'dotenv'

// Get env vars
dotenv.config()

export default {
mode: 'spa',
/*
** Plugins to load before mounting the App
*/
plugins: ['~/plugins/axios', '~/plugins/shortkey'],
/*
** Nuxt.js modules
*/
modules: [
'@nuxtjs/dotenv',
'@nuxtjs/vuetify',
'@nuxtjs/axios',
'@nuxtjs/auth',
'@nuxtjs/eslint-module'
],
/*
** Axios module configuration
** See https://axios.nuxtjs.org/options
*/
axios: {},

auth: {
redirect: {
callback: '/callback'
},
strategies: {
auth0: {
domain: `mydomain-${process.env.TENANCY}.auth0.com`,
client_id: 'myClientId',
audience: 'https://my-api.mydomain.com',
scope: [
'openid',
'profile',
'email',
'userinfo',
'user:*',
'user:read:all'
]
}
},
plugins: ['~/plugins/cdnAuth.js']
},

router: {
middleware: ['auth']
},

/*
** vuetify module configuration
** https://github.com/nuxt-community/vuetify-module
*/
vuetify: {
theme: {
primary: colors.blue.darken2,
accent: colors.grey.darken3,
secondary: colors.amber.darken3,
info: colors.teal.lighten1,
warning: colors.amber.base,
error: colors.deepOrange.accent4,
success: colors.green.accent3
}
},
/*
** Build configuration
*/
build: {
/*
** You can extend webpack config here
*/
extend(config, ctx) {}
},

server: {
port: 3005
},

env: {
API_KEY: process.env.API_KEY,
CDN_URL: process.env.CDN_URL
}
}

这是我的目录结构:

├── README.md
├── assets
│   ├── favicon.png
│   ├── logo_black.svg
│   └── style
├── components
│   ├── index.js
├── jest.config.js
├── layouts
│   ├── README.md
│   ├── default.vue
│   ├── dialog.vue
│   └── error.vue
├── middleware
│   └── README.md
├── mixins
│   ├── README.md
│   └── index.js
├── nuxt.config.js
├── package.json
├── pages
│   ├── README.md
│   ├── callback.vue
│   ├── index.vue
│   ├── login.vue
├── plugins
│   ├── README.md
│   ├── axios.js

最佳答案

想通了。这个问题是由于将 nuxt 的初始化调用放在顶部导航的 mounted() 方法中引起的。

我把它改成:

mounted() {
!this.$auth.loggedIn && this.$auth.loginWith('auth0')
},

关于javascript - 带有 Auth0 提供程序的 Nuxt Auth 模块导致重定向循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57192373/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com