erikpragt-connectid
erikpragt-connectid
@eitan-rosenberg Thanks for reporting this! You mentioned this: > datafaker should be included in module-info.java like the rest. Any reason why you can't add it to the `module-info.java` yourself? I...
I've got the same, but clicking on the key icon twice "fixes" the issue: the first time the list is empty, the second time it's filled. I never had this...
Hi @sdelamo , you mention that there's no open-session-in-view functionality in Micronaut, which is by design. Is there any documentation on this? I'm failing to find anything related to this,...
Hi @deki , I think we would be interested in this once Spring 7 is final. I'll ping our account manager.
@eitan-rosenberg it would be great for us to know if the code works without these items: ``` requires java.desktop; requires org.yaml.snakeyaml; requires libphonenumber; requires rgxgen; ``` We currently haven't added...
Hi @lepture , the only dependencies in my project I have are these: ``` [tool.poetry.dependencies] python = "^3.12" requests = "^2.32.3" authlib = "^1.3.2" ``` I've now added `cryptography` version...
I've migrated the code now to `jose`, and that gave some issues. It seems the OctKey doesn't like it when my key looks like this: ``` -----BEGIN PRIVATE KEY----- MIIEvQIBADANBgkqhki.........4XiTRA=...
Okay, after reading this: https://jose.authlib.org/en/guide/algorithms/, I've given it another shot: Now with using RSA Key instead of OctKey: ``` cleaned_key = config.signing_key.replace("-----BEGIN PRIVATE KEY-----", "").replace("-----END PRIVATE KEY-----", "").strip() key =...
Ah, this seems to be caused by user error: I was using the default registry, and I've updated to a new registry, which made things pass: ``` # See https://jose.authlib.org/en/guide/registry/...
Unfortunately, the code still doesn't work with Python 3.13. I have this as my dependencies: ``` [tool.poetry.dependencies] python = "^3.12" requests = "^2.32.3" authlib = "^1.3.2" cryptography = "^43.0.1" joserfc...