We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 364a557 commit bd682edCopy full SHA for bd682ed
README.md
@@ -76,8 +76,8 @@ In order to verify a token you first build a verifier and use it to verify a dec
76
```cpp
77
auto verifier = jwt::verify()
78
.with_issuer("auth0")
79
- .with_claim("sample", jwt::claim(std::string("test")));
80
- .allow_algorithm(jwt::algorithm::hs256{"secret"})
+ .with_claim("sample", jwt::claim(std::string("test")))
+ .allow_algorithm(jwt::algorithm::hs256{"secret"});
81
82
verifier.verify(decoded_token);
83
```
0 commit comments