Skip to content

Voxbone WebRTC NodeJS Standalone App v1.9.0 relsease

Compare
Choose a tag to compare
@sachanacar sachanacar released this 31 Aug 08:01
· 26 commits to master since this release

In this release we have moved the hashing/createKey() mechanism to an NPM and added an authentication object that can be used within the standalone app.

Add your credentials in routes/index.js:

var voxrtc_username= 'your_voxbone_webrtc_username';
var voxrtc_secret = 'your_voxbone_webrtc_secret';

Then use the Voxbone object to authenticate

var voxbone = new Voxbone({
    voxrtcUsername: voxrtc_username,
    voxrtcSecret: voxrtc_secret
});