ray
Results
3
comments of
ray
Same case here. Seems no progress on this issue, while the feature is crutial for a good app.
I had the same problem. I modified the function " T DecodeJWS(string token)" in AppleApptoreClient.cs and it works ``` csharp #if false var payload = JwtBuilder.Create() .WithAlgorithm(new ES256Algorithm(certs.First())) .MustVerifySignature() .Decode(token);...