Nico Sabena

Results 6 comments of Nico Sabena

For the directory (json) format, the `database.json` file for each custom DB would look like this sample: ```json { "id": "con_FDx22jJKk6XkAoWK", "options": { "mfa": { "active": true, "return_enroll_settings": true },...

Further testing shows that foreign characters also cause problems. For example, the word "Solución" is encoded as Soluci%C3%B3n by some frameworks (including .NET in the new Uri() constructor), but HttpValueCollection.ToString()...

HttpValueCollection.ToString() should probably be replaced, as it encodes in a not very standard way. Could this be a remplacement? ``` private static Uri RemoveBewitFromQuery(Uri uri) { ... var resultingQuery =...

Thanks! Will you be updating the NuGet package?

A possible workaround until this is fixed is to add a new rule that puts that info in namespaced claims: ``` function (user, context, callback) { // OIDC-Conformant pipeline will...

IMO `req.oidc.isAuthenticated()` should return true if the app session is still valid, even if you terminated your Auth0 session. The application session is independent of the Auth0 session, and having...