在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):twilio/twilio-node开源软件地址(OpenSource Url):https://github.com/twilio/twilio-node开源编程语言(OpenSource Language):JavaScript 100.0%开源软件介绍(OpenSource Introduction):twilio-nodeDocumentationThe documentation for the Twilio API can be found here. The Node library documentation can be found here. Versions
Supported Node.js VersionsThis library supports the following Node.js implementations:
TypeScript is supported for TypeScript version 2.9 and above. Installation
Sample UsageCheck out these code examples in JavaScript and TypeScript to get up and running quickly. Environment Variables
If your environment requires SSL decryption, you can set the path to CA bundle in the env var Lazy Loading
var accountSid = process.env.TWILIO_ACCOUNT_SID; // Your Account SID from www.twilio.com/console
var authToken = process.env.TWILIO_AUTH_TOKEN; // Your Auth Token from www.twilio.com/console
const client = require('twilio')(accountSid, authToken, {
lazyLoading: true
}); Specify Region and/or EdgeTo take advantage of Twilio's Global Infrastructure, specify the target Region and/or Edge for the client: var accountSid = process.env.TWILIO_ACCOUNT_SID; // Your Account SID from www.twilio.com/console
var authToken = process.env.TWILIO_AUTH_TOKEN; // Your Auth Token from www.twilio.com/console
const client = require('twilio')(accountSid, authToken, {
region: 'au1',
edge: 'sydney',
}); Alternatively, specify the edge and/or region after constructing the Twilio client: const client = require('twilio')(accountSid, authToken);
client.region = 'au1';
client.edge = 'sydney'; This will result in the Enable Debug LoggingThere are two ways to enable debug logging in the default HTTP client. You can create an environment variable called var accountSid = process.env.TWILIO_ACCOUNT_SID; // Your Account SID from www.twilio.com/console
var authToken = process.env.TWILIO_AUTH_TOKEN; // Your Auth Token from www.twilio.com/console
const client = require('twilio')(accountSid, authToken, {
logLevel: 'debug'
}); You can also set the logLevel variable on the client after constructing the Twilio client: const client = require('twilio')(accountSid, authToken);
client.logLevel = 'debug'; Using webhook validationSee example for a code sample for incoming Twilio request validation. Handling ExceptionsFor an example on how to handle exceptions in this helper library, please see the Twilio documentation. Using a Custom HTTP ClientTo use a custom HTTP client with this helper library, please see the Twilio documentation. Docker ImageThe Getting helpIf you need help installing or using the library, please check the Twilio Support Help Center first, and file a support ticket if you don't find an answer to your question. If you've instead found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo! ContributingBug fixes, docs, and library improvements are always welcome. Please refer to our Contributing Guide for detailed information on how you can contribute.
If you're not familiar with the GitHub pull request/contribution process, this is a nice tutorial. Getting StartedIf you want to familiarize yourself with the project, you can start by forking the repository and cloning it in your local development environment. The project requires Node.js to be installed on your machine. After cloning the repository, install the dependencies by running the following command in the directory of your cloned repository: npm install You can run the existing tests to see if everything is okay by executing: npm test To run just one specific test file instead of the whole suite, provide a JavaScript regular expression that will match your spec file's name, like: npm run test:javascript -- -m .\*client.\* |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论