Sooraj Chandu
Sooraj Chandu

Reputation: 1310

Twilio Client Python not Working in IOS Browser

I have created a simple twilio client application to make phone calls from Web Browser to phones. I used a sample Flask app to generate a secure Capability Token and used twilio.min.js library to handle calls from my HTML. The functionality works fine in Computer Browsers and Android Phone Browsers, but fails in IOS browsers(checked both in Safari and Chrome). In android the page asks for permission to use mic and headphone but in IOS it doesnot even as for that. Is there anything that I am missing here? It would be really helpful if someone can throw some light into this. The doc I referred to was : Twilio Hello Monkey Client

Upvotes: 1

Views: 226

Answers (1)

philnash
philnash

Reputation: 73100

Twilio developer evangelist here.

Twilio Client uses WebRTC and falls back to Flash in order to make web browsers into phones. Unfortunately Safari on iOS supports neither WebRTC nor Flash so Twilio Client cannot work within any browser on iOS.

It is possible to build an iOS application to use Twilio Client just not a web application.

Upvotes: 3

Related Questions