Can we set multiple "aud" claims in FusionAuth?
-
Is this possible?
-
We do not support this directly in FusionAuth, but you could use a Lambda to set the aud claim to whatever you want.
The specification allows for a string value, or an array of string values, so you could create a Lambda with something like:
jwt.aud = [ 'foo', 'bar' ];
More about Lambdas and JWTs here: https://fusionauth.io/docs/v1/tech/lambdas/jwt-populate