【Shell】創藍253雲通訊平臺國際簡訊API介面DEMO

luck_yun發表於2018-06-29
#!/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=""

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

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31510215/viewspace-2157056/,如需轉載,請註明出處,否則將追究法律責任。

相關文章