@ciptex/video-sdk
v0.14.2
Published
@ciptex/video-sdk
Downloads
47
Maintainers
Keywords
Readme
Race Video SDK
The video-sdk helper library lets you write Node.js code to make HTTP requests to the Ciptex Race Video API.
Do not use Basic Authentication in a front-end application. Doing so can expose your Twilio credentials to end-users as part of the bundled HTML/JavaScript sent to their browser.
Installation
The easiest way to install video-sdk is from NPM. You can run the command below from your project directory to install the library:
npm install --save @ciptex/video-sdk@latest
Then in your code:
import { VideoClient } from "@ciptex/video-sdk"
Testing your installation
Try Listing Kiosk Configurations like this:
import { VideoClient, Kiosk } from "@ciptex/video-sdk"
const accountSid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; // Your Account SID from www.twilio.com/console
const authToken = "your_auth_token"; // Your Auth Token from www.twilio.com/console
const client = new VideoClient({ accountSid, authToken });
const main = async () => {
try {
const kiosks: Kiosk[] = await client.kiosk.list();
console.log(kiosks);
}
catch (error) {
console.error(error);
}
}
main()
It's okay to hardcode your credentials when testing locally, but you should use environment variables to keep them secret before committing any code or deploying to production. Check out How to Set Environment Variables for more information.
Using This Library
Authenticate Client
const accountSid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
const authToken = "your_auth_token";
const client = new VideoClient({ accountSid, authToken });
Create A New Record
import { VideoClient } from "@ciptex/video-sdk"
const accountSid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
const authToken = "your_auth_token";
const client = new VideoClient({ accountSid, authToken });
const main = async () => {
try {
await client.room.create({
uniqueName: "Bob"
});
}
catch (error) {
console.error(error);
}
}
main()
Get Existing Record
import { VideoClient, Kiosk } from "@ciptex/video-sdk"
const accountSid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
const authToken = "your_auth_token";
const client = new VideoClient({ accountSid, authToken });
const main = async () => {
try {
const kiosk: Kiosk = await client.kiosk.fetch({
kioskId: "KIXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
});
console.log(kiosk);
}
catch (error) {
console.error(error);
}
}
main()
Handling Exceptions
If the Video API returns a 400 or a 500 level HTTP response, the video-sdk library will throw an error which can be caught. 400-level errors are normal during API operation ("Invalid number", "Cannot deliver SMS to that number", for example) and should be handled appropriately.
More Documentation
Once you're up and running with the video-sdk library, you'll find code samples using the latest version in our REST API docs