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
It is set to Formatting.Indented now, it causes serializer to generate \r\n while running on Windows. And that leads to "bad request" response from ZeroSSL to literally any signed request.
Works ok on Mac/Linux, likely ZeroSSL can parse either \r or \n, but not both.
Thanks.
The text was updated successfully, but these errors were encountered:
Hi!
Could you change JwsHelper.cs, line 94 formatting argument of SerializeObject to Formatting.None?
return JsonConvert.SerializeObject(jwsFlatJS, Formatting.None);
It is set to Formatting.Indented now, it causes serializer to generate \r\n while running on Windows. And that leads to "bad request" response from ZeroSSL to literally any signed request.
Works ok on Mac/Linux, likely ZeroSSL can parse either \r or \n, but not both.
Thanks.
The text was updated successfully, but these errors were encountered: