VoiceChat
VoiceChat is a set of APIs to create ad-hoc conferences to be used in the browser. Its built using the Plivo WebSDK and APIs.
Looking to self-host?
Clone this repo
$ git clone git@github.com:plivo/voicechat.git
Configure
Create a Plivo account if you haven't, then grab the Auth ID and Auth Token from the dashboard.
Add the credentials to config.py
PLIVO_AUTH_ID = {PLIVO_AUTH_ID}
PLIVO_AUTH_TOKEN = {PLIVO_AUTH_TOKEN}
Deploying to Heroku
Create a Heroku account if you haven't.
$ cd voicechat
$ heroku create {app_name} -s cedar
$ git push heroku master
$ heroku addons:add redistogo:nano --app {app_name}
$ heroku ps:scale web=1
Test your application
Go to {app_name}.herokuapp.com
API Docs
Create a conference name
POST /api/v1/conference/
Example
$ curl -XPOST http://voicechatapi.com/api/v1/conference/
{
"conference_name": "p12ygdwt1",
"conference_url": "http://voicechatapi.com/p12ygdwt1/"
}
Call a mobile & landline phone number (PSTN) into the bridge
POST /api/v1/conference/<conference_name>/
Parameters
to - The phone number to be called.
clid - The caller id which will be used. (The phone number to be shown in the recipient's phone.)
Example
$ curl -XPOST -d "to={1415123####}&clid={1415123####}" http://voicechatapi.com/api/v1/conference/<conference_name>/
{
"success": True,
"message": "Call has been queued"
}