ocaml-oidc
ocaml-oidc copied to clipboard
OpenID Connect implementation in OCaml. Currently only the RP (client) parts are polished.
Are there any plans to do an opam release soon? Just asking — could still work around this downstream using my much-overused rename-and-vendor workflow.
As discussed on slack, oidc misses `PATCH` which leads to type error _Originally posted by @JulesGuesnon in https://github.com/marigold-dev/marigold-dashboard/pull/54#discussion_r969723105_
There are some parsing that is raising now, we should return results
In the OAuth2 example, it appears to be possible to trigger login without any user interaction by causing the user's browser to do a `GET /auth` on the app, since...
A `state` parameter that is somehow associated with the client's user agent (usually meaning, with a cookie) is necessary to protect the OAuth2 callback from CSRF-like attacks. The library code...
Looking through a [list of OAuth providers](https://en.wikipedia.org/wiki/List_of_OAuth_providers) on Wikipedia, I made a short list of "important" OAuth2 providers that it may be good to test this repo against/adapt it to....