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
For .NET, the value of "cres" that I'm getting back from the ACS is not a valid base64 string. I have no idea where to go from here. Is this documentation outdated?
The text was updated successfully, but these errors were encountered:
We use a static method to decode it from base64 first; while (input.Length % 4 != 0) { input += "="; } var data = Convert.FromBase64CharArray(input.ToCharArray(), 0, input.Length); return Encoding.UTF8.GetString(data); }
On this page: here we find:
Sample Challenge Notification endpoint (server side)
For .NET, the value of "cres" that I'm getting back from the ACS is not a valid base64 string. I have no idea where to go from here. Is this documentation outdated?
The text was updated successfully, but these errors were encountered: