SMS メッセージを送信できる Azure Communication Services 電話番号。これを取得するには、電話番号の取得に関する記事を参照してください。
Postman をダウンロードしてインストールする
Postman は、任意の HTTP API に対して API 要求を行うことができるデスクトップ アプリケーションです。 これは、API のテストと探索用に一般に使用されています。 最新のデスクトップ バージョンを Postman の Web サイトからをダウンロードします。 Postman には、Windows、Mac、Linux 用のバージョンがあるため、お使いのオペレーティング システムに適したバージョンをダウンロードしてください。 ダウンロードしたら、アプリケーションを開きます。 スタート画面が表示されます。ここで、サインインするか Postman アカウントを作成するかを尋ねられます。 アカウントの作成はオプションであり、[Skip and go to app](スキップしてアプリに移動) リンクをクリックするとスキップできます。 アカウントを作成すると API 要求の設定が Postman に保存され、他のコンピューターでご自身の要求を取得できるようになります。
// Hash the request body using SHA256 and encode it as Base64
const hashedBodyStr = CryptoJS.SHA256(pm.request.body.raw).toString(CryptoJS.enc.Base64)
// And add that to the header x-ms-content-sha256
pm.request.headers.upsert({
key:'x-ms-content-sha256',
value: hashedBodyStr
});
// This gets the part of our URL that is after the endpoint, for example in https://contoso.communication.azure.com/sms, it will get '/sms'
const url = pm.request.url.toString().replace('{{endpoint}}','');
// Construct our string which we'll sign, using various previously created values.
const stringToSign = pm.request.method + '\n' + url + '\n' + dateStr + ';' + hostStr + ';' + hashedBodyStr;
// Decode our access key from previously created variables, into bytes from base64.
const key = CryptoJS.enc.Base64.parse(pm.variables.get('key'));
// Sign our previously calculated string with HMAC 256 and our key. Convert it to Base64.
const signature = CryptoJS.HmacSHA256(stringToSign, key).toString(CryptoJS.enc.Base64);
// Add our final signature in Base64 to the authorization header of the request.
pm.request.headers.upsert({
key:'Authorization',
value: "HMAC-SHA256 SignedHeaders=date;host;x-ms-content-sha256&Signature=" + signature
});
最終的な要求前スクリプト
最終的な要求前スクリプトはこちらのようになります。
// Set the Date header to our Date as a UTC String.
const dateStr = new Date().toUTCString();
pm.request.headers.upsert({key:'Date', value: dateStr});
// Hash the request body using SHA256 and encode it as Base64
const hashedBodyStr = CryptoJS.SHA256(pm.request.body.raw).toString(CryptoJS.enc.Base64)
// And add that to the header x-ms-content-sha256
pm.request.headers.upsert({
key:'x-ms-content-sha256',
value: hashedBodyStr
});
// Get our previously specified endpoint variable
const endpoint = pm.variables.get('endpoint')
// Remove the https, prefix to create a suitable "Host" value
const hostStr = endpoint.replace('https://','');
// This gets the part of our URL that is after the endpoint, for example in https://contoso.communication.azure.com/sms, it will get '/sms'
const url = pm.request.url.toString().replace('{{endpoint}}','');
// Construct our string which we'll sign, using various previously created values.
const stringToSign = pm.request.method + '\n' + url + '\n' + dateStr + ';' + hostStr + ';' + hashedBodyStr;
// Decode our access key from previously created variables, into bytes from base64.
const key = CryptoJS.enc.Base64.parse(pm.variables.get('key'));
// Sign our previously calculated string with HMAC 256 and our key. Convert it to Base64.
const signature = CryptoJS.HmacSHA256(stringToSign, key).toString(CryptoJS.enc.Base64);
// Add our final signature in Base64 to the authorization header of the request.
pm.request.headers.upsert({
key:'Authorization',
value: "HMAC-SHA256 SignedHeaders=date;host;x-ms-content-sha256&Signature=" + signature
});
{
"from":"<Your Azure Communication Services Telephone Number>",
"message":"<The message you'd like to send>",
"smsRecipients": [
{
"to":"<The number you'd like to send the message to>"
}
]
}
"from" の値については、前述のように Azure Communication Services ポータルで電話番号を取得する必要があります。 スペースを含めずに、プレフィックスとして国番号を付けて入力します。 たとえば、+15555551234 のように指定します。 "message" は送信したい内容であればどのようなものでもかまいませんが、Hello from Azure Communication Services は適例です。 "to" 値は、SMS メッセージを受信できる、ご自身がアクセスできる電話にしてください。 ご自身のモバイルを使用することをお勧めします。
入力したら、前に作成した Communication Services コレクションにこの要求を保存する必要があります。 これにより、前に作成した変数と要求前スクリプトが確実に取得されます。 これを行うには、要求領域の右上にある [Save](保存) ボタンをクリックします。
これによってダイアログ ウィンドウが表示され、要求の名前とその保存場所を指定するように求められます。 任意の名前を指定できますが、ダイアログ下部で確実にご自身の Communication Services コレクションを選択してください。