when should setSelfSigned status false.
When your Appwrite instance/endpoint doesn't have a valid SSL certificate
asking for this client.setEndpoint('https://cloud.appwrite.io/v1') .setProject('proId') .setSelfSigned(status: false);
for production mode self assigned status should be true or false?
Cloud has a valid certificate so you should not set self signed to true
ok
is this is the reason for printing in console or how to disable this log
No. That's printed when you call subscribe
is there is any way to hide this message.
Not at the moment
Recommended threads
- Realtime: Listener not triggered on upda...
I self host appwrite 1.8.1. The genereal functionallity works fine. But my realtime subscription isn't updating. I see "Received heartbeat response from realtim...
- 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...