We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
npx nuxi info
auth: { isEnabled: true, baseURL: ${process.env.AUTH_ORIGIN}, globalAppMiddleware: true, provider: { type: "local", endpoints: { signUp: false, signIn: { path: "auth/mfa", method: "post" }, getSession: { path: "auth/user", method: "get" }, }, token: { signInResponseTokenPointer: "/access_token", sameSiteAttribute: "strict", maxAgeInSeconds: 36000, }, refresh: { isEnabled: true, endpoint: { path: "auth/refresh", method: "post" }, token: { signInResponseRefreshTokenPointer: "/refresh_token", refreshRequestTokenPointer: "/refresh_token", maxAgeInSeconds: 1800, }, }, }, },
${process.env.AUTH_ORIGIN}
refresh token is send with bearer, can i remove?
No response
The text was updated successfully, but these errors were encountered:
refresh_token
fix(#879): do not format refresh_token (#886)
15630ca
Fixed in @sidebase/nuxt-auth@0.9.1! Thanks for the report 😊
@sidebase/nuxt-auth@0.9.1
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Environment
npx nuxi info
Reproduction
auth: {
isEnabled: true,
baseURL:
${process.env.AUTH_ORIGIN}
,globalAppMiddleware: true,
provider: {
type: "local",
endpoints: {
signUp: false,
signIn: { path: "auth/mfa", method: "post" },
getSession: { path: "auth/user", method: "get" },
},
token: {
signInResponseTokenPointer: "/access_token",
sameSiteAttribute: "strict",
maxAgeInSeconds: 36000,
},
refresh: {
isEnabled: true,
endpoint: { path: "auth/refresh", method: "post" },
token: {
signInResponseRefreshTokenPointer: "/refresh_token",
refreshRequestTokenPointer: "/refresh_token",
maxAgeInSeconds: 1800,
},
},
},
},
Describe the bug
refresh token is send with bearer, can i remove?
Additional context
No response
Logs
No response
The text was updated successfully, but these errors were encountered: