0

This must be a silly question, but is there any way to make calls btw two iOS apps without server app mentioned in Twilio tutorials. Tell me please what server app does and is there any way to perform such tasks on front end instead?

rmaddy
  • 314,917
  • 42
  • 532
  • 579

1 Answers1

0

Twilio developer evangelist here.

The server is required to generate an access token for your users to get access to the Twilio service.

You also need to host some TwiML to tell Twilio what to do with calls when you make them.

If you are not interested in running a server, however, you are in luck. Just recently, Twilio launched Functions, a serverless environment for you to deploy code to. With a Twilio Function, you can use Node.js to generate your access tokens for your users and you won't have to host the code yourself, it will all be on the Twilio platform.

Check out Twilio Functions in your console and take a look at the Node.js quickstart application for the iOS Twilio Programmable Voice SDK which should give you an idea of how to use Node for your application within Functions. I'm sure there'll be tutorials and blog posts coming out. Also, check out this video on how to create access tokens for your apps with Twilio Functions.

Let me know if that helps at all.

philnash
  • 70,667
  • 10
  • 60
  • 88