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
1.2.10
1.2.0
MINGW64_NT-10.0-22631 3.4.10-87d57229.x86_64 x86_64 unknown
import { Elysia } from "elysia"; import { swagger } from "@elysiajs/swagger"; const app = new Elysia() .use(swagger()) .get("/hi", ({ cookie: { my_cookie } }) => { console.log(my_cookie.value); return { message: "hi", my_cookie: my_cookie.value }; }) .get("/", () => "Hi Elysia!") .listen(3000); console.log(`🦊 Elysia is running at ${app.server?.hostname}:${app.server?.port}`);
Get the value of cookies
No response
cookies undefined
node_modules
bun.lockb
yes
The text was updated successfully, but these errors were encountered:
issues by scalar
Sorry, something went wrong.
No branches or pull requests
What version of Elysia is running?
1.2.10
What version of elysia-swagger is running?
1.2.0
What platform is your computer?
MINGW64_NT-10.0-22631 3.4.10-87d57229.x86_64 x86_64 unknown
What steps can reproduce the bug?
When I set it in Elysia swagger it will be empty.
But when I set in Thunder client or shell http I get the value.
What is the expected behavior?
Get the value of cookies
What do you see instead?
No response
Additional information
cookies undefined
Have you try removing the
node_modules
andbun.lockb
and try again yet?yes
The text was updated successfully, but these errors were encountered: