Signed Event Webhookの検証を行うサンプルアプリケーションです。
HTTP Webフレームワーク express
上で動作します。
SendGridのダッシュボード上でMail Settings > Signed Event Webhook Requestsを有効化し、画面に表示されている Verification Key
を確認します。
$ git clone http://github.com/awwa/verify-signed-event-webhook-nodejs.git
$ cd verify-signed-event-webhook-nodejs
$ cp .env.example .env
# .envファイルを編集してください
$ npm install
Mail Settings > Signed Event Webhook Requestsに表示されている Verification Key
を SG_VERIFICATION_KEY
に指定して、.envファイルを保存します。
SG_VERIFICATION_KEY=sendgrid_verification_key
$ npm start
SendGridのダッシュボード上でMail Settings > Event Webhookを有効化し、HTTP Post URL
にサンプルアプリケーションのURLを指定します。ngrokなどでトンネリングすると開発環境で手軽に試すことができます。
SendGridのダッシュボード上のMail Settings > Event Webhookで Test Your Integration
ボタンを選択してサンプルイベントを送信します。以下のようなログが出力されていたら、検証は成功です。
result: true
A sample application that verifies SendGrid Signed Event Webhook.
It runs on HTTP Web framework express
.
Enable Mail Settings > Signed Event Webhook Requests on SendGrid dashboard. Copy Verification Key
to clip board.
$ git clone http://github.com/awwa/verify-signed-event-webhook-nodejs.git
$ cd verify-signed-event-webhook-nodejs
$ cp .env.example .env
# Edit .env file
$ npm install
Set Verification Key
which is displayed on Mail Settings > Signed Event Webhook Requests to SG_VERIFICATION_KEY
. Save .env file.
SG_VERIFICATION_KEY=sendgrid_verification_key
$ npm start
Enable Mail Settings > Event Webhook on SendGrid dashboard. Set your sample application URL to HTTP Post URL
. You can use ngrok for tunneling on development environment.
Press button Test Your Integration
on SendGrid dashboard Mail Settings > Event Webhook to POST sample events. You can see the log below if the verification process is successful.
result: true