1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:22:09 +02:00

jwt: escape placeholder (#11937)

This commit is contained in:
Sebastiaan Speck 2023-12-30 08:13:40 +01:00 committed by GitHub
parent bb1bd2a152
commit cdc6630810
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -18,4 +18,4 @@
- Codifica dados (payload) de um par de chaves (key pair) em um JWT:
`jwt encode --alg {{HS256}} --secret {{1234567890}} -P chave=valor`
`jwt encode --alg {{HS256}} --secret {{1234567890}} -P {{chave=valor}}`

View file

@ -18,4 +18,4 @@
- Encode key pair payload to JWT:
`jwt encode --alg {{HS256}} --secret {{1234567890}} -P key=value`
`jwt encode --alg {{HS256}} --secret {{1234567890}} -P {{key=value}}`