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
- Impossible to get USER after createEmail...
Am using provider to deal with functions linked to appwrite. Here is my login. Future<String?> login(String email, String password) async { try { aw...
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Flutter Android oAuth is no more working
I currently don't get the oAuth login to work in flutter android. it works on ios and on web. but when try to use it on Android, i get to the point where the ca...