Skip to content
This repository was archived by the owner on Apr 13, 2022. It is now read-only.

Commit ed01598

Browse files
jaxoncreeddmitrizagidulin
authored andcommitted
Capitalize OIDC
1 parent 8921c17 commit ed01598

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

application-workflow-detailed.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -331,10 +331,10 @@ GET https://secureauth.example/authorize?scope=openid&client_id=7243fd594bdcf9c7
331331

332332
That URL might look a little complex, but it's essentially a request to `https://secureauth.example/authorize` with the following URL parameters:
333333

334-
- `scope=open_id`: a list of [oidc scpes](https://auth0.com/docs/scopes/current/oidc-scopes) (attributes of the RS to which this token should have access). `open_id` is a scope that is needed to verify Alice's identity.
334+
- `scope=open_id`: a list of [OIDC scpes](https://auth0.com/docs/scopes/current/oidc-scopes) (attributes of the RS to which this token should have access). `open_id` is a scope that is needed to verify Alice's identity.
335335
- `client_id=7243fd594bdcf9c71a9b902274afaa30`: indicates the id of the client. The value for this field should be obtained in the registration phase.
336336
- `response_type=id_token%20token` indicates the desired response data. Note that you cannot use response types that were not previously indicated during registration.
337-
- `request=eyJhbGciOiJub25lIn0.eyJyZWRpc...`: A JWT containing the public key of the client and signed by the client using the private key. This is unique to webId-oidc. We will eventually use this to generate our pop-token.
337+
- `request=eyJhbGciOiJub25lIn0.eyJyZWRpc...`: A JWT containing the public key of the client and signed by the client using the private key. This is unique to WebId-OIDC. We will eventually use this to generate our pop-token.
338338

339339
When unencrypted the request looks like
340340

@@ -364,7 +364,7 @@ Given everything checks out in the last step, the OP should redirect to its logi
364364

365365
#### 14. Generates an id_token
366366

367-
The OP should generate a JWT [id token](https://www.oauth.com/oauth2-servers/openid-connect/id-tokens/) as per the oidc specifications. When decoded, the id_token could look like this.
367+
The OP should generate a JWT [id token](https://www.oauth.com/oauth2-servers/openid-connect/id-tokens/) as per the OIDC specifications. When decoded, the id_token could look like this.
368368

369369
```json
370370
{

0 commit comments

Comments
 (0)