dazzling-dentist-97232
07/27/2023, 2:19 PMsession.id_token.subject
, which is nice, but i need to know also what scopes the user selected. am i missing something?
this is the data i receive on the webhook + session but i removed that part because it includes all the data i need already.
"request": {
"client_id": "dd13b694-873d-46ab-8fa0-ad51388f55ff",
"granted_scopes": [],
"granted_audience": [],
"grant_types": [
"authorization_code"
],
"payload": {}
}
dazzling-dentist-97232
07/27/2023, 2:23 PM"request": {
"client_id": "app-client",
"granted_scopes": ["offline", "openid", "hydra.*"],
"granted_audience": [],
"grant_types": ["authorization_code"],
"payload": {}
}
dazzling-dentist-97232
07/27/2023, 2:24 PM/callback
endpoint is receiving the scopes correctly
{
"access_token": "ory_at_7u",
"refresh_token": "ory_rt_-",
"scopes": "openid offline_access drop:mint drop:create"
}
flaky-solstice-4750
08/23/2023, 6:49 PM