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 use appwrite types
I am using appwrite types --language ts ./types to generate the types yielding something like: ``` import type { Models } from 'node-appwrite'; // This file i...
- Dynamic Roles
I tried to store a row with this permissions: permissions.push( Permission.read(Role.users("verified")), Permission.write(Role.label(`c-${calend...
- appwrite auth problem regarding the sess...
Hi, I have problem with auth. When I try to login/signup using OTP, at the end session.secret is empty, i have searched online and in the docs but i cannot find...