Twilio - 如何确定电话会议的长度?

时间:2014-11-26 02:28:33

标签: python twilio

我正在创建一个创建许多会议室的应用程序。这些会议室将有一位专家/主持人,可以在会议室与一人或多人交谈。对于计费,我需要能够找到电话会议的长度。这一次必须是从专家加入会议室(如果其他人在其中)到最后一个人(不是专家)离开的时间。有什么想法吗?

1 个答案:

答案 0 :(得分:2)

Twilio开发者传播者在这里。

使用Conferences list resource可能会对您有所帮助。你可以像这样拉出会议细节:

# Download the Python helper library from twilio.com/docs/python/install
from twilio.rest import TwilioRestClient

# Your Account Sid and Auth Token from twilio.com/user/account
account_sid = "{{ account_id }}"
auth_token  = "{{ auth_token }}"
client = TwilioRestClient(account_sid, auth_token)

# A list of conference objects with the properties described above
conferences = client.conferences.list()

每个会议都有一个date_created和date_updated属性,可用于确定长度。我链接的文档显示了如何根据房间名称和呼叫状态等过滤此会议列表。

如果您需要根据参与者获得更精确的信息,您可以使用participants resource查看个别参与者在电话会议上花费的时间。

希望有所帮助!