Salesforce JWT Token
An implementation of Salesforce OAuth 2.0 JWT bearer token flow, modernized and using promises.
Salesforce OAuth 2.0 JWT Bearer Token Flow
Installation
$ npm install sf-jwt-token --save
Salesforce Configuration
Step 1 : The certificate
Create the private key and the certificate in osx terminal:
$ openssl req -nodes -new -x509 -keyout private.pem -out server.cert
Step 2 : The connected App
Create a connected app in Salesforce:
- Select Enable OAuth Settings
- Select Use digital signatures
- Upload the generated certificate
Usage
const fs = const getToken = const privateKey = fs { const token = await console}
The audience (aud) must be:
- https://login.salesforce.com,
- https://test.salesforce.com
- https://acme.force.com/customers (where acme.force.com/customers is your community URL)
Example Output
access_token: 'xxxxxxxxxx!ARYAQNzk4LCbHsX[...]' scope: 'id full' instance_url: 'https://eu6.salesforce.com' id: 'https://login.salesforce.com/id/xxxxxxxxxxEAI/yyyyyyyyyy' token_type: 'Bearer'
License
MIT