リクエストの検証(Dialogflow)

会話 Webhook へのリクエストは、ヘッダーに含まれる次の形式の認可トークンで署名されています。

authorization: "<JWT token>"

認証トークンは JSON Web Token 形式に準拠しています。 [Audience] フィールドの値は、対象グループの Actions Console プロジェクト ID と クリックします。署名を検証するには、トークンを展開してオーディエンス フィールドを確認します。 アプリのプロジェクト ID と一致します。そのためには、JWT 互換の (Google API Node.js クライアントなど)を使用して、 または、Actions on Google Node.js クライアント ライブラリを直接使用して ActionsSdkOptions#verification オプション。

const {actionssdk} = require('actions-on-google');

const app = actionssdk({verification: 'nodejs-cloud-test-project-1234'});
// HTTP Code 403 will be thrown by default on verification error per request.