We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following the example, I'm getting:
_deviceReady params undefined _deviceDidStartListening params undefined
{ type: 'DEVICE_LISTENING_START', params: undefined } { callState: { callDirection: null, callingError: 'Twilio Services Error', callFromNumber: null, callToNumber: null, listening: true }, telephonyState: { deviceReady: true, deviceError: null, clientName: 'jenny' } }
And this is what I'm trying to
Twilio.init() Twilio.makeCall(`client:Julia-1`)
const telephonyService = { init (client) { this.initDeviceListeners() return new Promise((resolve, reject) => { api.request().then((token) => { Twilio.initWithToken(token) return resolve(true) }).catch((error) => { return resolve(error) }) }) }, ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Following the example, I'm getting:
And this is what I'm trying to
The text was updated successfully, but these errors were encountered: