1. 程式人生 > >【shell】創藍253雲通訊平臺國際短信API接口DEMO

【shell】創藍253雲通訊平臺國際短信API接口DEMO

nta echo PE 國際短信 區號 TE lan api接口 設置

#!/bin/sh

account and password can be change to what you wanna!

#author ChuangLan
#修改為您的account
account=""
#修改為您的pw
password="a.123456"
#手機號碼,格式(區號+手機號碼),例如:8615800000000,其中86為中國的區號
mobile="8615800000000"
#設置您要發送的內容
msg="【253雲通訊】您的驗證碼是123456。如非本人操作,請忽略。"
echo "send sms:"

url="http://intapi.253.com/send/json"

data="{\"account\":\"$account\",\"password\":\"$password\",\"mobile\":\"$mobile\",\"msg\":\"$msg\"}"
curl -H "Content-Type:application/json" -X POST --data $data $url

【shell】創藍253雲通訊平臺國際短信API接口DEMO