Voxbone WebRTC NodeJS Standalone App v1.9.0 relsease
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
});