im trying to follow Javascript Mastery, deploy banking app using Nextjs.14, im trying to test auth on localhost, but i get general_bad_request when creating user(sign-up)
TypeScript
type: 'general_bad_request',
response: {
message: 'There was an error processing your request. Please check the inputs and try again.',
code: 400,
type: 'general_bad_request',
version: '0.13.14'```
TL;DR
Developers followed a tutorial to deploy a banking app using Next.js 14 and encountered a 'general_bad_request' error when testing authentication on localhost during user sign-up. The error message suggests checking inputs and trying again.solvedddd
Recommended threads
- How to get current user account session ...
i am using sveltekit and i'm a bit unclear on how to get the current user's session from the server side. thisi s what i have so far // src/lib/server/appwrite...
- Realtime: Email Verification Not work
There are some issues with real-time updates. For email verification, updates triggered by the console will be checked, but real-time updates are not triggered ...
- Rate límit reset
I've made an error in the code by not setting a limit on how much rows should i get per request because i was working with a small db for testing. Last night Iv...