-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to return consent sessions for a user #1203
Comments
Could you include the whole table row? Things like "remember" and "remember_for" are important here! |
Oh and could you please include logs :) |
Another question @pixelblend , which DB are you using? |
Logs:
JSON export of table: [
{
"challenge": "bcfaf290bc7d4fdebbbaff174f145b67",
"verifier": "6bb42f66b19a46a586c1209a0b51a82d",
"client_id": "XXX",
"subject": "018ae5e7-cdd2-4218-9c6b-a253541bb150",
"request_url": "http://localhost:9000/oauth2/auth?brand=codeclub&client_id=union-dev&redirect_uri=http%3A%2F%2Flocalhost%3A3333%2Fcb&response_type=code&scope=openid+email+profile+force-consent&state=b63450d7ffab76cf61da52ba2f1a626224a54d7f5dd9e03a",
"skip": false,
"requested_scope": "openid|email|profile|force-consent",
"csrf": "7ecca06501184ed78a4405711e2f487d",
"authenticated_at": "2018-12-06 14:35:41.26738",
"requested_at": "2018-12-06 14:35:37.320656",
"oidc_context": "{}",
"forced_subject_identifier": "",
"login_session_id": null,
"login_challenge": "7559294f0dc145f4accc6dfd9741c616",
"requested_at_audience": "",
"acr": ""
}
]
|
Database is Postgres 10.5 |
Cool, that is really helpful. Could you do me another favor and give the output of:
and print the (redacted) output here? |
[
{
"granted_scope": "openid|email|profile|force-consent",
"remember": false,
"remember_for": 3600,
"error": "{}",
"session_access_token": "{}",
"session_id_token": "{\"email\":\"jane.doe@example.com\",\"email_verified\":true,\"name\":\"Jane Doe\",\"nickname\":\"Jane\",\"picture\":\"http://localhost:3000/profile/018ae5e7-cdd2-4218-9c6b-a253541bb150/avatar\",\"profile\":\"http://localhost:3000/profile\",\"uuid\":\"018ae5e7-cdd2-4218-9c6b-a253541bb150\"}",
"was_used": true,
"granted_at_audience": "",
"challenge": "bcfaf290bc7d4fdebbbaff174f145b67",
"verifier": "6bb42f66b19a46a586c1209a0b51a82d",
"client_id": "XXX",
"subject": "018ae5e7-cdd2-4218-9c6b-a253541bb150",
"request_url": "http://localhost:9000/oauth2/auth?brand=XXX&client_id=SSS&redirect_uri=http%3A%2F%2Flocalhost%3A3333%2Fcb&response_type=code&scope=openid+email+profile+force-consent&state=b63450d7ffab76cf61da52ba2f1a626224a54d7f5dd9e03a",
"skip": false,
"requested_scope": "openid|email|profile|force-consent",
"csrf": "7ecca06501184ed78a4405711e2f487d",
"authenticated_at": "2018-12-06 14:35:41.26738",
"requested_at": "2018-12-06 14:35:37.320656",
"oidc_context": "{}",
"forced_subject_identifier": "",
"login_session_id": null,
"login_challenge": "7559294f0dc145f4accc6dfd9741c616",
"requested_at_audience": "",
"acr": ""
}
] |
Ok so |
In the meanwhile, set |
Thanks, I'll give that a try. |
Instead of just showing consent requests which have remember set to true, show all past consent request. Closes #1203 Signed-off-by: aeneasr <aeneas@ory.sh>
Instead of just showing consent requests which have remember set to true, show all past consent request. Closes #1203 Signed-off-by: aeneasr <aeneas@ory.sh>
Describe the bug
user
value matching the subject, nothing is returnedExpected behavior
A list of the consent sessions
Version:
The text was updated successfully, but these errors were encountered: