Hi Everyone, I have a scope that contains the pipe...
# general
n
Hi Everyone, I have a scope that contains the pipe (
|
) character (e.g.,
X|Y
). During the authentication flow, I successfully obtain the Ory authorization code. However, when I use the code to fetch an access token, the token's claims contain two separate scopes:
X
and
Y
, instead of
X|Y
. Upon further investigation, I found that the
hydra_oauth2_access
table in the database stores granted scopes using the pipe (
|
) character as a separator. As a result, Hydra treats
X|Y
as two different scopes rather than a single scope. Does Hydra support any configuration to fix this issue, or is there a way to use a different character as a separator when storing scopes?