当我在文本框中输入任意数字时。我收到来自plivo号码的电话,我得到request_uuid
和call_uuid.Now
。我想记录这个电话。
当我打电话给另一个人并且他/她接到我的电话时,应该记录下来。
有谁能告诉我如何完成这项任务?
package plivo.helper;
import java.util.LinkedHashMap;
import com.plivo.helper.api.client.RestAPI;
import com.plivo.helper.exception.PlivoException;
import com.plivo.helper.api.response.response.Record;
public class RecordConference
{
public static void main(String[] args) {
RestAPI restAPI = new RestAPI("XXXXXXXXXXXXXXXXXXXXX", "XXXXXXXXXXXXXXXXXXX", "v1");
LinkedHashMap<String, String> params = new LinkedHashMap<String, String>();
params.put("conference_name", "1234");
Record response = new Record();
try {
response = restAPI.recordConference(params);
System.out.println(response.url);
} catch (PlivoException plivoException) {
plivoException.printStackTrace();
}
}
我在这里得到了null
回复。
答案 0 :(得分:1)
嗨试试这个录音工作正常
public Class RecordConference {
public static void main(String...args){
PlivoClient newCall = new PlivoClient("v0.1", auth_id, auth_token , plivo_url, true);
CallFeature call = newCall.call();
Map<String, String> callParams = new HashMap<String, String> ();
callParams.put("CallUUID", "eau76-rty-67ueg-876960-ghy");
callParams.put("FileFormat", "wav");
callParams.put("FilePath","/home/teleswitch/development/prompts/");
callParams.put("FileName","record1");
RecordStartResponse callResponse = call.recordStart(callParams);
System.out.println(callResponse);
}
}