Replies: 2 comments 1 reply
-
|
Try opening the well-known url in your browser. Inside the config should be the issuer. Make sure you're using that as |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
@lukevella Hi. The issuer is my nextcloud instance URL, as I have on the .env vars. https://nextcloud.url/apps/oidc/openid-configuration returns {
"issuer": "https:\/\/nextcloud.url",
"authorization_endpoint": "https:\/\/nextcloud.url\/apps\/oidc\/authorize",
"token_endpoint": "https:\/\/nextcloud.url\/apps\/oidc\/token",
"userinfo_endpoint": "https:\/\/nextcloud.url\/apps\/oidc\/userinfo",
"jwks_uri": "https:\/\/nextcloud.url\/apps\/oidc\/jwks",
"scopes_supported": [
"openid",
"profile",
"email",
"roles",
"groups"
],
"response_types_supported": [
"code",
"code id_token",
"id_token"
],
"response_modes_supported": [
"query"
],
"grant_types_supported": [
"authorization_code",
"implicit"
],
"acr_values_supported": [
"0"
],
"subject_types_supported": [
"public"
],
"id_token_signing_alg_values_supported": [
"RS256",
"HS256"
],
"token_endpoint_auth_methods_supported": [
"client_secret_post",
"client_secret_basic"
],
"display_values_supported": [
"page"
],
"claim_types_supported": [
"normal"
],
"claims_supported": [
"iss",
"sub",
"aud",
"exp",
"auth_time",
"iat",
"acr",
"azp",
"preferred_username",
"scope",
"nbf",
"jti",
"roles",
"name",
"updated_at",
"website",
"email",
"email_verified",
"phone_number",
"address",
"picture",
"quota"
],
"end_session_endpoint": "https:\/\/nextcloud.url\/apps\/oidc\/logout"
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
Unable to use Nexcloud H2CK/oidc app as a login provider for Rally
To Reproduce
Add the following .env vars:
According to the app doc https://github.com/H2CK/oidc/wiki/User-Documentation#endpoints , I also tried the following endpoits:
Additional context
This is what I can find on the logs:
Beta Was this translation helpful? Give feedback.
All reactions