使用 Plivo 在 nodejs 上设置源编号
Setting the source number on nodejs with Plivo
如果我想使用 Plivo 拨打电话 API 我需要有源号码和目的地号码。但是,源号必须与我的 Plivo 帐户相关联。但是在阅读他们的教程时,他们提到购买 Plivo 号码是可选的,只有在您想接听电话时才需要。我只想发送呼叫。有人知道如何在 nodejs 中使用 Plivo 使用免费帐户拨打电话吗?
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
};
显然,您可以使用任何数字作为来源。就像它不必注册一样。所以,'from' : '1111111111'
实际上会起作用。
如果我想使用 Plivo 拨打电话 API 我需要有源号码和目的地号码。但是,源号必须与我的 Plivo 帐户相关联。但是在阅读他们的教程时,他们提到购买 Plivo 号码是可选的,只有在您想接听电话时才需要。我只想发送呼叫。有人知道如何在 nodejs 中使用 Plivo 使用免费帐户拨打电话吗?
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
};
显然,您可以使用任何数字作为来源。就像它不必注册一样。所以,'from' : '1111111111'
实际上会起作用。