Closed softsan closed 5 years ago
Is your certificate self signed? i just add on version 0.7.9 an option param which enables ignore ssl cert
hub_connection = HubConnectionBuilder()\ .with_url(server_url, options={ "access_token_factory": lambda: signalr_core_example_login(login_url, username, password), "verify_ssl": False }).with_automatic_reconnect({ "type": "interval", "keep_alive_interval": 10, "intervals": [1, 3, 5, 6, 7, 87, 3] })\ .build()
Describe the bug It doesn't work when hub server is running on https and getting following error:
scheme https is invalid <class 'ValueError'>
I am connecting it with
ws://mychathost/chatHub
, so if my chatHub is running onhttp
then its working fine, but not onhttps
.Additional context version: signalrcore 0.7.6