|
, Builder.string "client_id_secret" (credentials.secret |> Maybe.withDefault "") |
When using lamdera/auth I had to rename client_id_secret to client_secret for the authorization request to orcid to be passed. Also in https://datatracker.ietf.org/doc/html/rfc6749#section-2.3.1 client_secret seems to be the correct name.
This line was added to the OAuth package by lamdera because for the implicit client-side request no client_secret is ever transmitted.
auth/src/OAuth/AuthorizationCode.elm
Line 422 in 2215675
When using lamdera/auth I had to rename
client_id_secrettoclient_secretfor the authorization request to orcid to be passed. Also in https://datatracker.ietf.org/doc/html/rfc6749#section-2.3.1 client_secret seems to be the correct name.This line was added to the OAuth package by lamdera because for the implicit client-side request no client_secret is ever transmitted.