docs: Add DPoP examples to EXAMPLES.md#768
Merged
yogeshchoudhary147 merged 2 commits intomainfrom Jan 15, 2026
Merged
Conversation
b336ba7 to
0dd77e9
Compare
gyaneshgouraw-okta
previously approved these changes
Jan 15, 2026
601fe2b to
c80019d
Compare
- Add DPoP section to table of contents - Document DPoP setup with useDpop configuration - Add createFetcher() examples (recommended approach) - Add multiple API endpoints example with separate fetchers - Add advanced manual DPoP management example - Add error handling with UseDpopNonceError - Add standalone components DPoP configuration - Include code examples for all DPoP methods: getDpopNonce, setDpopNonce, generateDpopProof, createFetcher
- Change section title to 'Device-bound tokens with DPoP' - Add detailed intro explaining DPoP security benefits - Document browser API requirements (Crypto API, IndexedDB) - List supported OAuth 2.0 flows - Add important callouts about ES256, new sessions, and sender constraining - Reorganize content to match auth0-react structure - Move manual DPoP management under Advanced usage subsection - Add clearer progression from simple to advanced usage
c80019d to
72b659e
Compare
gyaneshgouraw-okta
approved these changes
Jan 15, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Adds comprehensive documentation and examples for DPoP (Demonstrating Proof-of-Possession) support to
EXAMPLES.md, following the same structure and pattern as auth0-react.What's Added
useDpop: trueconfigurationcreateFetcher()withfetchWithAuth()for automatic token and nonce management (recommended)getDpopNonce(),setDpopNonce(),generateDpopProof()provideAuth0()Related