I have mod_auth_openidc
working on centos7
but cannot find the documentation that references how to extract passed user information.
My logs show that the module is performing the following interrogations
oidc_authz_match_claim: evaluating key "nickname"
oidc_authz_match_claim: evaluating key "email"
oidc_authz_match_claim: evaluating key "user_id"
oidc_authz_match_claim: evaluating key "identities"
oidc_authz_match_claim: evaluating key "iat"
oidc_authz_match_claim: evaluating key "picture"
oidc_authz_match_claim: evaluating key "last_password_reset"
oidc_authz_match_claim: evaluating key "name"
oidc_authz_match_claim: evaluating key "created_at"
oidc_authz_match_claim: evaluating key "app_metadata"
oidc_authz_match_claim: evaluating key "email_verified"
oidc_authz_match_claim: evaluating key "clientID"
oidc_authz_match_claim: evaluating key "folders"
I have tried setting both of the following in httpd.conf
OIDCRemoteUserClaim email
OIDCOAuthRemoteUserClaim email
then using <?php echo $_SESSION['REMOTE_USER']; ?>
but I am not getting any variables being returned.
thanks Art