1

Twilio の通話録音を通話に関連付けるには、どのようにすすめますか?

録音がどの通話に適用されるかを示すパラメーターはありますか? ドキュメントは次のとおりです: https://www.twilio.com/docs/api/twiml/record

または、以下の記録を設定するときに、「event_id」などのカスタム パラメータをアプリから渡す方法はありますか?

    <Dial hangupOnStar="true">
        <Conference record="record-from-start" eventCallbackUrl="/twilio/receive_recording_url">custom_conference_id from my app</Conference>
    </Dial>
4

1 に答える 1

1

Twilio は、「action」URL へのリクエストとともにレコーディング URL を渡します。

<?xml version="1.0" encoding="UTF-8"?>
<!-- page located at http://example.com/voicemail_record.xml -->
<Response>
    <Say>
        Please leave a message at the beep. 
        Press the star key when finished. 
    </Say>
    <Record
        action="http://foo.edu/handleRecording.php"
        method="GET"
        maxLength="20"
        finishOnKey="*"
        />
    <Say>I did not receive a recording</Say>
</Response> 

http://foo.edu/handleRecording.phpは GET 経由で受け取ります:

  • RecordingUrl: 録音されたオーディオの URL
  • RecordingDuration: 録音されたオーディオの長さ (秒単位)
于 2015-04-20T21:27:18.857 に答える