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
- Apple OAuth Scopes
Hi Hi, I've configured sign in with apple and this is the response i'm getting from apple once i've signed in. I cant find anywhere I set scopes. I remember se...
- Sign In With Apple OAuth Help
Hi All! I've got a flutter & appwrite app which Im trying to use sign in with apple for. I already have sign in with google working and the function is the sam...
- [SOLVED] OAuth With Google & Flutter
Hi all, I'm trying to sign in with google and it all goes swimmingly until the call back. I get a new user created on the appwrite dashboard however the flutte...