0
Plivo API를 사용하여 전화를 걸려면 소스 번호와 대상 번호가 있어야합니다. 그러나 소스 번호는 내 Plivo 계정과 연결되어야합니다. 그러나 자습서를 읽는 동안 Plivo 번호를 구입하는 것은 선택 사항이며 전화를 받으려는 경우에만 필요하다고 언급했습니다. 나는 오직 전화 만 보내고 싶다. 누구든지 nodejs에서 Plivo를 사용하여 무료 계정으로 전화를 거는 방법을 알고 있습니까?Plivo로 노드 j의 소스 번호 설정
var params = {
'to': '2222222222', // The phone numer to which the all has to be placed
'from' : '1111111111', // The phone number to be used as the caller id
'answer_url' : "https://some-url/speak.xml", // The URL invoked by Plivo when the outbound call is answered
'answer_method' : "GET", // The method used to call the answer_url
};