当我在文本框中输入任何数字时。我接到来自 pivo 号码的电话,我得到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
回应。