rhythmic-barista-43123
01/02/2023, 2:49 PM<http://oryapis.com/ui/welcome|oryapis.com/ui/welcome>
, always get this obscure error:
An error occurred
An error occurred with the following message:
{
"id": "19bfa98a-REDACTED",
"error": {
"code": 500,
"message": "An internal server error occurred, please contact the system administrator",
"reason": "EOF",
"status": "Internal Server Error"
},
"created_at": "2023-01-02T12:51:56.575723Z",
"updated_at": "2023-01-02T12:51:56.575723Z"
}
My mapping:
local claims = {
email_verified: false,
} + std.extVar('claims');
{
identity: {
traits: {
[if "email" in claims && claims.email_verified then "email" else null]: claims.email,
},
},
}
I permitted openid
scope only as I believe that should be sufficient to get a prototype working. I tried adding read_user
email
profile
etc to my OIDC "application" as well as the social sign-in config but that didn't seem to make any differences. FWIW GitHub social sign-in worked as expected.
Is there any ways to check error logs from Ory Network? I'm hesitant to launch self-hosted instances just for this.
Factoid: when I stole an authorization code
from /oauth/authorize
with Firefox DevTools, it couldn't be used to issue /oauth/token
, with this error
The provided authorization grant is invalid, expired, revoked, does not match the redirection URI used in the authorization request, or was issued to another clientalthough the
/authorize
call itself looked just ok (when I pasted the same /authorize
URI to Firefox, I got a functional code
which I could exchange with an access token)magnificent-energy-493
rhythmic-barista-43123
01/02/2023, 3:19 PMhigh-optician-2097
rhythmic-barista-43123
01/05/2023, 10:52 AMhigh-optician-2097
high-optician-2097
rhythmic-barista-43123
01/05/2023, 12:16 PM