Normalize Telephone Number
Useful for Studio to read out telephone numbers as telephone number rather then large numbers
// Description // Normalize Telephone Number // Useful for Studio to read out telephone numbers as telephone number rather then large numbers exports.handler = async function (context, event, callback) { // Make sure under Functions Global Config tab: // "Add my Twilio Credentials (ACCOUNT_SID) and (AUTH_TOKEN) to ENV" is CHECKED const twilioClient = context.getTwilioClient(); // Pass in From as a URL query parameter // Example: https://x.x.x.x/<path>?From=%2b15108675310 let from = event.From || '+15095550100'; let result = await twilioClient.lookups .phoneNumbers(from) .fetch({ countryCode: 'US' }); result = { normalizedNum: result.nationalFormat, }; return callback(null, result); }; © 2020 GitHub, Inc.
ヘルプが必要ですか?
誰しもが一度は考える「コーディングって難しい」。そんな時は、お問い合わせフォームから質問してください。 または、Stack Overflow でTwilioタグのついた情報から欲しいものを探してみましょう。