Hello. I have server with https. And this server contain page with webgl
Can i communicate safely with my server from webgl application? Does unity can validate my certificate? (or this is build-in in browser?)
Unity communicates via the browser - using either the web request object or websockets. If you are communicating with your server using the web request object via https it will work. It will also work with unsecured websockets, but not for long - I was actually at Google today and talked to a chrome dev who told me the change is coming ‘sooner rather than later’ - so you will also have to switch to secured websockets.
Thank you. This is good ![]()