- Account
- Information
- Transactions
- Applications
- List
- Create
- Get info
- Update
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function checkValue(value) { | |
var userIdRegex = \u-\n; | |
var tokenRegex = \t-\n; | |
var secretRegex = \a\; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Response> | |
</Response> |
Making and receiving a call in the browser is done through a Bandwidth JavaScript library called BWClient. Using the BWClient library you will login for a given user/endpoint (e.g. webuser1 with password abc123 from above). For security reasons, you do not want the password exposed in the JavaScript code running in the browser.
Therefore, you will obtain an authorization token in your App Server and use that token to login.
To create an authorization token, use the following REST API:
POST /v1/users/<user-id>/domains/<domain-id>/endpoints/<endpoint-id>/tokens
returns
Site | Percent Goal |
---|---|
Quora | 3.49% |
Medium | 3.01% |
GitHub | 2.70% |
0.10% | |
0.00% |
Creating a production level standard for voice calling & sip endpoints. The design patterns here should be what we want our customers to implement, as they WILL copy the patterns for their production applications.
- Create New Users
- Handle incoming/outgoing calls
- WebRTC for each user
- Mobile app registration / log-in
- Single Domain for entire application - should include random string to prevent duplication
- Single Catapult Application for entire voice ref app - should include random string to prevent duplication
Site | Percent Goal |
---|---|
Quora | 2.59% |
Medium | 2.96% |
GitHub | 1.72% |