-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(oauth): support optional scope in OAuth request (#25)
set CAMUNDA_TOKEN_SCOPE in the environment to pass a scope in the OAuth request
- Loading branch information
Showing
10 changed files
with
329 additions
and
64 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# Camunda 8 JavaScript SDK | ||
|
||
This is the monorepo for the official Camunda 8 JavaScript SDK. | ||
This is the official Camunda 8 JavaScript SDK. | ||
|
||
## Using the SDK in your project | ||
|
||
Install the SDK as a dependency: | ||
|
||
```bash | ||
npm i @camunda/sdk | ||
npm i @camunda8/sdk | ||
``` |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
1 change: 1 addition & 0 deletions
1
src/oauth/__test__/.token-cache/oauth-token-clientId-CONSOLE.json
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 @@ | ||
{"token":"something","audience":"CONSOLE","expiry":null} |
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
Oops, something went wrong.