나는 파이썬을 사용하여 Twilio에서 녹음을하고 있습니다. 내가 만든 최신/최신 레코딩에 어떻게 접근합니까? 건배! 어떻게 최신 그것을 코드 것, 기록에 액세스하는Twilio에서 최신 녹음을받는 방법?
resp = twilio.twiml.Response()
resp.say("Please record your message after the beep")
resp.record(maxLength="10", action="/handle-recording")
샘플 코드 :
녹음을 만들기? 감사! 녹음이 목록에 추가됩니다으로
# 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 = "AC30bd8bdca7572344721eb96c15a5c0c7"
auth_token = "your_auth_token"
client = TwilioRestClient(account_sid, auth_token)
# A list of recording objects with the properties described above
recordings = client.recordings.list()
누군가 의견을 제시하기 전에는 내 API 키가 아닙니다. –