Skip to content

Commit ce2b865

Browse files
committed
Some fixes
1 parent 73449ff commit ce2b865

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aspnetcore/security/authentication/configure-jwt-bearer-authentication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ JWT bearer tokens should be fully validated in an API. The following should be v
122122
* Audience claim with the expected value.
123123
* Token expiration.
124124

125-
The following claims are required for OAuth 2.0 access tokens: `iss`, `exp`, `aud`, `sub`, `client_id`, `iat, and`jti`.
125+
The following claims are required for OAuth 2.0 access tokens: `iss`, `exp`, `aud`, `sub`, `client_id`, `iat, and `jti`.
126126

127127
If any of these claims or values are incorrect, the API should return a 401 response.
128128

@@ -212,7 +212,7 @@ Insecure handling of access tokens, such as weak authentication or storing token
212212

213213
### Use standards
214214

215-
Standards like OpenID Connect or OAuth should **always**** be used when creating access tokens. Access tokens should **not**** be created in production apps without adhering to the security precautions outlined in this article. Creating access tokens should be limited to test scenarios.
215+
Standards like OpenID Connect or OAuth should **always** be used when creating access tokens. Access tokens should **not** be created in production apps without adhering to the security precautions outlined in this article. Creating access tokens should be limited to test scenarios.
216216

217217
### Use asymmetric keys
218218

0 commit comments

Comments
 (0)