I'm in context of managing an openId jws, and I'm not sure about how to verify the aud
claim.
In details, suppose that I've an application id myapp.site.com
and I receive an aud
which value is myapp.site.com|*|ANY
. I've not found specifications about this format, but reading the aud
specification into https://openid.net/specs/openid-connect-core-1_0.html#IDToken I've supposed to explode
the string myapp.site.com|*|ANY
using the "pipe" as separator, and then verify if this array contains the aspected client id (ie myapp.site.com
).
My question is: whatabout the *
and ANY
? there's some specifications about this format? where can I retrieve informations?
Thanks in advance,
Sim.