Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

User is not logged in #37

Open
Friis1978 opened this issue Jul 27, 2023 · 4 comments
Open

User is not logged in #37

Friis1978 opened this issue Jul 27, 2023 · 4 comments

Comments

@Friis1978
Copy link

Hi, I want to be able to know whether the user is logged in, using the useAuth() function, but it seemed like the user is never logged in, when using the $sanctumAuth.login.

Im able to call the protected routes on the api, so the csrf token is working as expected, but on locale host and in production, but the user is never set, using useAuth().

What am I doing wrong?
Screenshot 2023-07-27 at 11 15 55

This is the nuxt.config.js file

nuxtSanctumAuth: {
token: false,
baseUrl: process.env.NUXT_PUBLIC_API_URL || "https://endpoint",
endpoints: {
csrf: "/sanctum/csrf-cookie",
login: "/login",
logout: "/logout",
user: "/api/v1/user",
},
csrf: {
headerKey: 'X-XSRF-TOKEN',
cookieKey: 'XSRF-TOKEN',
tokenCookieKey: 'nuxt-sanctum-auth-token',
},
redirects: {
home: "/",
login: "/login",
logout: "/",
},
},

@kreejzak
Copy link
Collaborator

kreejzak commented Aug 2, 2023

Hi, how do you call the login method? There should be no need to fetch user manually.

@Friis1978
Copy link
Author

Hi, im using a normal login function, like this:
const loginSanctum = async () => { const { email, password } = form.value; try { await $sanctumAuth.login( { email, password, }, (res) => { emit("onLoggedIn"); if (redirectTo) { return location.reload(); //return router.replace(redirectTo) } else { return router.replace("/"); } } ); } catch (e) { console.log("login error", e); error.value = e?.message; }

Then I see the token afterwards as a cookie, but it seems like 'auth' is not working because when im trying to get the user it works fine, apparently the using is just not seen as logged in for 'Auth' in nuxt.

@hadimajidi
Copy link

Hi, Same problem all cookies are set. But
const { $sanctumAuth } = useNuxtApp()
const auth = useAuth()
does not have content or setting

@filippo88
Copy link

Hi, Same problem all cookies are set. But const { $sanctumAuth } = useNuxtApp() const auth = useAuth() does not have content or setting

Did you find solution to this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants