Hi,
I have a JWT claim that looks like this:
{
...
'data': [
{ 'name': 'a'},
{ 'name': 'b'}
...
]
}
Can I specify conditions like request.auth.claims[data][name]
?
I found a few posts asking similar questions. But it seems they only addressed the issue of nested objects in a claim. But I have objects in an array.
I know putting an array in the claim sucks.
Thanks.