0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

TwilioでAPI Keyを作成、SMSを送信

Last updated at Posted at 2025-01-24

はじめに

諸事情により、記事を公開するアカウントを変更しました。
自分が手順を忘れないように、備忘録として取りまとめます。
今後は不定期的にTwilio関連、その他諸々の記事を更新していこうかなと思っています。

Twilio API Keyの作成方法

まずはAPI Keyを作成します。
Account trust hubへ移動し、API keys&tokensを開きます。
スクリーンショット 2025-01-16 10.45.47.png
スクリーンショット 2025-01-16 10.45.58.png

Create API keyから作成して、SIDとSecret keyをコピーしてメモか何かに保存します。

スクリーンショット 2025-01-16 10.47.10.png
スクリーンショット 2025-01-16 10.49.09.png

Secret keyは後から参照不可能なので、必ずコピーしておきましょう。
あとは作成したSIDとSecret keyを利用してSMS送信します。

Node.js
const twilio = require("twilio"); 
const accountSid = 'TwilioのアカウントSID。ACから始まる文字列';
const apiKey = 'コピーしたAPI Key作成時のSID。SKから始まる文字列';
const apiSecret = 'コピーしたSecret';
const  client  = twilio (apiKey,apiSecret,{ accountSid: accountSid });

client.messages
  .create({
    body: 'これはテストです。Twilioをよろしくお願いします。',
    to: '送り先の電話番号',
    messagingServiceSid: 'MGから始まる文字列',
  })
  .then(message => console.log(message.sid));

参考サイト

SMS送信方法
https://www.twilio.com/docs/messaging

API Key作成方法、使い方
https://www.twilio.com/docs/iam/api-keys

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?