Play with multiple Twilio Communication APIs for SMS, voice and video calls and etc
- Sign up a free-trial account at https://www.twilio.com/try-twilio and add a phone number
- Add your credentials and trial numbers to local-credentials.json
{
"accountSid": <accountSid>,
"authToken": <authToken>,
"fromNumber": <twilio-number>
}
- Run
yarn start
to start the services. Remember you have limited usage that can be checked on your dashboard.
- Use POST
/communication/voice
to send voice call to your phone. - Use POST
/communication/message
with payload{ message: <message> }
to send message to your phone.