playing with cerbos playground and when i call the...
# help
j
playing with cerbos playground and when i call the playground API, i see
Copy code
{
  "code": 3,
  "message": "InvalidArgument"
}
what does that mean?
so the policies i have in playground are very simple
if i clear this field, playground works nicely. looks like playground performs validation of the jwt. can i turn this off? i'm using an expired token.
why is this returning an error?
image.png
d
This is a YAML edge case when strings start with a quote. Here is a workaround:
Copy code
- expr: >
    'audience' in request.aux_data.jwt.aud
j
aaaah ok
thanks!