This is a demo implementation of RingCentral Engage Digital Source SDK
You will find the minimum requirements in order to implement a Engage Digital Source SDK:
- implementation.info
- Response signature and request signature check
- Base actions (show, list)
Request MUST be done with content-type: application/json
- Clone the repo:
git clone git@github.com:ringcentral-tutorials/engage-digital-source-sdk-demo.git
- Install the app:
npm install
- Set your Engage Digital Secret as an environment variable:
export DIMELO_SECRET_KEY="YOUR_SECRET_KEY"
- Start the app:
npm start
- You can now send post request on
http://localhost:3000
If you want to bypass the signature check you can add a NO_SIGN_CHECK
environment variable:
export NO_SIGN_CHECK="ANY_VALUE_YOU_WANT"
Its value won't be used, you can use whatever you want.