Setting up status callbacks for Twilio Video

旧城冷巷雨未停 提交于 2019-12-11 15:27:32

问题


I'm having trouble getting status callbacks working for Twilio Video. Here's where I create a room on the Ruby server:

    group_room = client.video.rooms.create(
      unique_name: room,
      type: 'group',
      record_participants_on_connect: true,
      status_callback: https://www.example.com/room_events,
      status_callback_method: 'POST'
    )

Note that this isn't just an issue of localhost not being accessible from the Internet— The problem occurs in production as well, with no signs of status callbacks occurring.

来源:https://stackoverflow.com/questions/47148499/setting-up-status-callbacks-for-twilio-video

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!