Im running my appwrite instance locally for development purpuses, and whenever I do a request (e.g. creating an account) I get 404. Why is that?
` client = Client() .setEndpoint("https://172.20.163.38:80/v1") <-- local ip of my WSL2 .setProject("12345...") .setSelfSigned(status: true);
var account = Account(client);
account.create( userId: ID.unique(), email: "abc@mail.de", password: "fake_password", );`
Im running appwrite inside WSL2, might that cause problems?
Take out the :80 port and try again
but you should be able to point 'https://127.0.0.1/v1` if you've opened the 80 port
Taking out the port worked!
[Solved] 404 in flutter
Recommended threads
- login With OAuth Failed
login With OAuth Failed: when i cliick to login with any of the following (facebook, gmail or apple) am being redirected out of the app to enter my detail, afte...
- Flutter OAuth2 webAuth Bug?
I created with flutter an app where I can login in with my Microsoft Account. When I compile it to Web (WASM) or Android (aab) then there is no problem what so ...
- Synchronous Function Execution Timed Out...
Hi Appwrite team 👋 I’m facing a synchronous function execution timeout issue on Appwrite Cloud and would appreciate some guidance. I executed this function u...