You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wich decodes to: https://test.com/signalr/negotiate?clientProtocol=1.3&connectionData=[{"Name":"livetiminghubv1"}]&queryString[parameterA]=valueA&queryString[parameterB]=valueB
I would expect: https://test.com/signalr/negotiate?clientProtocol=1.3&connectionData=%5B%7B%22Name%22%3A%22livetiminghubv1%22%7D%5D¶meterA=valueA¶meterB=valueB
Wich decodes to: https://test.com/signalr/negotiate?clientProtocol=1.3&connectionData=[{"Name":"livetiminghubv1"}]¶meterA=valueA¶meterB=valueB
Thnx! Seb.
The text was updated successfully, but these errors were encountered:
Hi, I'm getting unexpected results when I'm trying to add querystring parameters on initialisation of a HubConnection.
Gives me: (Outgoing call intercepted with "Charles")
https://test.com/signalr/negotiate?clientProtocol=1.3&connectionData=%5B%7B%22Name%22%3A%22livetiminghubv1%22%7D%5D&queryString%5BparameterA%5D=valueA&queryString%5BparameterB%5D=valueB
Wich decodes to:
https://test.com/signalr/negotiate?clientProtocol=1.3&connectionData=[{"Name":"livetiminghubv1"}]&queryString[parameterA]=valueA&queryString[parameterB]=valueB
I would expect:
https://test.com/signalr/negotiate?clientProtocol=1.3&connectionData=%5B%7B%22Name%22%3A%22livetiminghubv1%22%7D%5D¶meterA=valueA¶meterB=valueB
Wich decodes to:
https://test.com/signalr/negotiate?clientProtocol=1.3&connectionData=[{"Name":"livetiminghubv1"}]¶meterA=valueA¶meterB=valueB
Thnx! Seb.
The text was updated successfully, but these errors were encountered: