Ramon Smits

Results 162 comments of Ramon Smits

@bbrandt Yes, with `UsePessimisticConcurrencyControl` we do an INSERT just when the message is received but with snapshot isolation enabled on the database even though that INSERT is already sent to...

Unfortunately, the extension does not work.

Ok it seems I found how to use it: ```c# var httpClient = new HttpClient(); httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("MySuperClient/0.1"); var teslaClient = new TeslaClient(TeslaClientBase.DefaultBaseUri, httpClient); ```

> What is the "tesla-net/0.6.2"? Should that be the version of the api i am using, in my case 0.7.0? @adamncsu @nlogozzo That is YOUR application identification according to the...

To extend @adamncsu his sample, here one that set the bearer token once. The `HttpClient` should be reused as much as possible as this will reuse an open connection to...

I have the same issue. The QR code contains data in the following uri format: otpauth://totp/{{ORG_NAME}}%3A{{USER_EMAIL}}?secret={{TOTP_SECRET_BASE64}}&issuer=Microsoft I assume the secret is a base64 encoded byte array but I'm not sure...

ok, my bad, seems the secret is not Base64 but Base32 encoded. Using `Base32Encoding.ToBytes` works!

> I am. It seems that even though I'm passing along SHA256/SHA512 in the algorithm parameter, Microsoft and Duo are only giving back an SHA1 code. What are you trying...

Its too bad that the diff set is so large due to many unrelated changed like code formatting which makes it hard to review actual changes