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 converts to a string using newtonsoft. Workaround is easy, filing a bug as FYI.
System.Text.Json.JsonReaderException: The JSON value from [RecaptchaVerificationResponse].success could not be converted to System.String.
at System.Text.Json.ThrowHelper.ThrowJsonReaderException_DeserializeUnableToConvertValue(Type propertyType, Utf8JsonReader& reader, ReadStack& state)
...
This is a known limitation of the JsonSerializer, by design. We generally avoid loose types/inferring what types could work between JSON and .NET types and only do "strict" matching.
We are working to provide an extension capability that will let callers write their own converters which is more flexible.
It converts to a string using newtonsoft. Workaround is easy, filing a bug as FYI.
The text was updated successfully, but these errors were encountered: