2023-11-18, 02:22 PM
I believe autodiscovery isn't working because you don't have the server set up properly. This log message:
> requests.exceptions.MissingSchema: Invalid URL '192.168.178.45/QuickConnect/Initiate': No scheme supplied. Perhaps you meant https://192.168.178.45/QuickConnect/Initiate?
generally indicates that you've received the connection URL from the server via autodiscovery, but only received the IP address. This needs to have a schema (http:// or https://), and port (if you're not using 80/443). So the server is providing incomplete data that the client doesn't know how to handle.
> requests.exceptions.MissingSchema: Invalid URL '192.168.178.45/QuickConnect/Initiate': No scheme supplied. Perhaps you meant https://192.168.178.45/QuickConnect/Initiate?
generally indicates that you've received the connection URL from the server via autodiscovery, but only received the IP address. This needs to have a schema (http:// or https://), and port (if you're not using 80/443). So the server is providing incomplete data that the client doesn't know how to handle.