Open durango opened 5 years ago
Just try to use wss
protocol in dialer
dialer := gremgo.NewDialer("wss://127.0.0.1:8182")
can't check it locally because of untrusted local certificate but the connection is using popular gorilla/websocket and seems to be established without errors
NewSecureDialer doesn't exist. The authentication code in readme file should be updated as below:
sa := gremgo.SetAuthentication("userame", "password")
dialer := gremgo.NewDialer("wss://htgremlin.gremlin.cosmos.azure.com:443", sa) // if ssl, using wss
Seems to be missing?