Как хранить записи для каждого канала
Я следую за следующим блогом, чтобы нажать, чтобы позвонить. https://www.twilio.com/docs/tutorials/click-to-call-java-spring
Я могу сделать звонок и запись тоже. Но как мы можем хранить записи для каждого канала?
Может кто-нибудь, пожалуйста, помогите.?
callCreator.setRecordingChannels ("5"); или callCreator.setRecordingChannels("dual"); не помогает
Вот полный класс
public class TwilioLine {
private String twilioNumber;
private TwilioRestClient restClient;
public TwilioLine(TwilioRestClient restClient, String twilioNumber) {
this.restClient = restClient;
this.twilioNumber = twilioNumber;
}
public void call(final String phoneNumber, final String responseUrl) {
try {
CallCreator callCreator = new CallCreator(new PhoneNumber(phoneNumber), new PhoneNumber(twilioNumber), new URI(responseUrl));
callCreator.setRecord(true);
callCreator.setSendDigits("8245719056");
callCreator.setRecordingChannels("5");
callCreator.create(restClient);
} catch (URISyntaxException e) {
throw new CallException(e);
}
}
}