Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
camunda-saas-oauth
Advanced tools
A library to exchange a set of Camunda 8 SaaS API credentials for a token
A library to exchange a set of Camunda 8 SaaS API credentials for a token to make API calls to Camunda 8 SaaS. Uses camunda-8-credentials-from-env to get the credentials from the environment.
Caches the token to disk, and refreshes tokens before they expire.
Install as a dependency:
npm i camunda-saas-oauth
import * as auth from "camunda-saas-oauth"
async function main () {
const useragent = 'myclient-nodejs/1.0.0'
const operateToken = await auth.getOperateToken(useragent)
const tasklistToken = await auth.getTasklistToken(useragent)
const optimizeToken = await auth.getOptimizeToken(useragent)
const zeebeToken = await auth.getZeebeToken(useragent)
return {
operateToken,
tasklistToken,
optimizeToken,
zeebeToken
}
}
The call will throw if the client credentials are not found in the environment, or you request a token for a scope for which the credentials are not valid.
Set the API client credentials in the environment, using the environment variables from the web console.
To configure a different cache directory, set the CAMUNDA_TOKEN_CACHE_DIR
environment variable.
To turn off disk caching, set the environment variable CAMUNDA_TOKEN_CACHE=memory-only
.
Example of a custom user agent string: mycustom-client-nodejs/${pkg.version} ${CUSTOM_AGENT_STRING}
The methods that return tokens use an OAuthProvider
to get the tokens.
The OAuthProvider
class is a wrapper that hydrates a OAuthProviderImpl
with credentials from the environment.
If you want to manually set the credentials (for example, to address multiple clusters in a single application), you can do so by creating an OAuthProviderImpl
directly, like so:
import { OAuthProviderImpl } from 'camunda-saas-oauth'
const oauth = new OAuthProviderImpl({
/** OAuth Endpoint URL */
authServerUrl,
/** OAuth Audience */
audience, clientId, clientSecret,
userAgentString
})
const operateToken = oauth.getToken('OPERATE')
const optimizeToken = oauth.getToken('OPTIMIZE')
const tasklistToken = oauth.getToken('TASKLIST')
const zeebeToken = oauth.getToken('ZEEBE')
1.2.4
Things that were broken and are now fixed.
FAQs
A library to exchange a set of Camunda 8 SaaS API credentials for a token
The npm package camunda-saas-oauth receives a total of 2,886 weekly downloads. As such, camunda-saas-oauth popularity was classified as popular.
We found that camunda-saas-oauth demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.