Twilio Room Creation take too long time to return a response

108 Views Asked by At

I am working on a creating video platform and in that, I used Twilio service. It is working fine for me but Video Room creation takes around 10-15 seconds. How to optimize video room creation?

I followed the same code format as they provided on their docs. I implemented this code in Python.

account_sid = os.environ['TWILIO_ACCOUNT_SID']
auth_token = os.environ['TWILIO_AUTH_TOKEN']
client = Client(account_sid, auth_token)

room = client.video.rooms.create(unique_name='DailyStandup')
0

There are 0 best solutions below