Rosbridge_websocket ssl certificate

Hello, I want to send data to my website via websocket with rosbridge. But it gives me wss error. How can I add the SSL certificate? Where can I get it? Is this really the problem? is there a different solution?
https://www.xxxx.com/' was loaded over HTTPS, but attempted to connect to the insecure WebSocket endpoint 'ws://0.0.0.0:9090/'. This request has been blocked; this endpoint must be available over WSS.

The problem seems to be that your WebSocket server is running locally and you are trying to send data to it from a site running on HTTPS.

That would not work.

What you need to do is to make you WebSocket server available over HTTPS (Google how to do that), if you have not done that already. Then you can send data to it using wss://... (not ws://).

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.