-
Notifications
You must be signed in to change notification settings - Fork 610
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DPoP updates #5094
Closed
Closed
DPoP updates #5094
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e7194fd
edits
susanharper-okta 2b716a9
more redesign
susanharper-okta 6d6aa7f
more updates
susanharper-okta bf74b22
more updates
susanharper-okta 5a1fc7b
final section
susanharper-okta 250e778
updated DPoP
susanharper-okta fc1eedf
adding headers in response
susanharper-okta d282f02
acrolinx
susanharper-okta File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/@okta/vuepress-site/docs/guides/dpop/main/nonoktaresourceserver/claims.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
* `htm`: HTTP method. The HTTP method of the request that the JWT is attached to. This value is always `POST`. | ||
* `htu`: HTTP URI. The `/token` endpoint URL for the Okta authorization server that you want to use. Example: `http://{yourOktaDomain}/oauth2/{authServerId}/v1/token`. | ||
* `iat`: <StackSnippet snippet="iat" inline /> | ||
* `iat`: Issued at. The time at which the JWT is issued. The time appears in seconds since the Unix epoch. The Unix epoch is the number of seconds that have elapsed since January 1, 1970 at midnight UTC. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
packages/@okta/vuepress-site/docs/guides/dpop/main/nonoktaresourceserver/glitch.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
packages/@okta/vuepress-site/docs/guides/dpop/main/nonoktaresourceserver/iat.md
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
...ages/@okta/vuepress-site/docs/guides/dpop/main/nonoktaresourceserver/payload.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
The following non-Okta resource request displays the DPoP-bound access token in the `Authorization` header and the DPoP proof JWT in the `DPoP` header. In this example, values are truncated for brevity. | ||
|
||
Example request | ||
|
||
```bash | ||
curl -v -X GET \ | ||
--header 'Accept: application/json' \ | ||
--header 'Content-Type: application/json' \ | ||
--header 'Authorization: DPoP eyJraWQiOiJRVX.....wt7oSakPDUg' \ | ||
--header 'DPoP: eyJ0eXAiOiJkcG9w.....H8-u9gaK2-oIj8ipg' \ | ||
"https://resource.example.org" | ||
``` |
2 changes: 0 additions & 2 deletions
2
.../@okta/vuepress-site/docs/guides/dpop/main/nonoktaresourceserver/whatyouneed.md
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should the example response also show the
dpop-nonce
header?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep I can do that. I'll pull that from the response in Postman and update the example.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added.