Skip to content

Commit

Permalink
fix: session to jwt example (#1961)
Browse files Browse the repository at this point in the history
  • Loading branch information
the-emerald authored Dec 6, 2024
1 parent 3cddb3b commit 9921ff8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/identities/session-to-jwt-cors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ local session = std.extVar('session');
The easiest way to supplies these files to Ory Network is to base64-encode them:

```shell
JWKS_B64_ENCODED=$(cat es256.jwks.json | base64)
JSONNET_B64_ENCODED=$(cat claims.jsonnet | base64)
JWKS_B64_ENCODED=$(cat es256.jwks.json | base64 -w 0)
JSONNET_B64_ENCODED=$(cat claims.jsonnet | base64 -w 0)
```

Next, we configure our Ory Network project's tokenizer templates. The key we choose here is `jwt_example_template1`. We supply
Expand Down

0 comments on commit 9921ff8

Please sign in to comment.