docs: document ctx JSON object support for context-aware authorization#289
Open
samsternberg wants to merge 1 commit intoskyflowapi:mainfrom
Open
docs: document ctx JSON object support for context-aware authorization#289samsternberg wants to merge 1 commit intoskyflowapi:mainfrom
samsternberg wants to merge 1 commit intoskyflowapi:mainfrom
Conversation
The Node SDK already supports ctx as string | Record<string, any> (shipped in SK-2391), but the README and samples only showed string usage. This adds: - README: code examples for both string and object ctx patterns - README: explains how ctx keys map to Skyflow CEL policy variables (request.context.role, request.context.department, etc.) - README: documents context field on PathCredentials/StringCredentials - README: signed data tokens section now shows object ctx usage - Samples: bearer token example shows string, object, and creds approaches - Samples: signed token example shows string and object approaches Resolves: DOCU-1441 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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.
Summary
ctxJSON object support in bearer token and signed data token generationctxasstring | Record<string, any>(shipped in SK-2391), but the README and samples only showed string usagectx: 'user_12345') and object context (ctx: { role: 'admin', department: 'finance' })request.context.role,request.context.department)contextfield onPathCredentials/StringCredentialsfor automatic token generationTest plan
tscResolves: DOCU-1441
🤖 Generated with Claude Code