mirror of
https://github.com/donl/plivo-node.git
synced 2026-05-25 22:07:10 -06:00
10 lines
206 B
JavaScript
10 lines
206 B
JavaScript
let plivo = require('plivo');
|
|
let client = new plivo.Client('', '');
|
|
|
|
client.lookup.get(
|
|
""
|
|
).then(function(response) {
|
|
console.log(response);
|
|
}).catch(function(error) {
|
|
console.log(error);
|
|
});
|