-
Notifications
You must be signed in to change notification settings - Fork 47
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
Unable to use zValidator for query with POST requests #113
Comments
Hi @kolyasapphire, I've tried running the code, but it seems to work fine on my environment. Therefore, the issue might be related to package dependencies. Could you create a GitHub project to reproduce the issue? Once you do that, I can investigate it. |
Hey @yusukebe, Absolutely, here you go: Thanks for looking into this! |
Thanks! You might fix this issue with adding the following: export const config = {
api: {
bodyParser: false
}
} This is related to #84 |
import requests with requests.session() as session: url = 'https://register.fdsinstitut.com/ext/index.php' headers = {} reponse = session.post(url, headers=headers, cookies=cookies, data=donnees) print(reponse.text) |
dieses programm löuft nicht richtig , |
Thanks @yusukebe! Works as expected now |
Hey! First of all thank you so much for your Hono and the Node.js adapter work - they are awesome!
I've noticed that this code works fine with just Hono on Vercel inside Next.js:
But when using the
honojs/node-server
like so:I am getting:
Without
zValidator
it also works as expected.The text was updated successfully, but these errors were encountered: