shell创蓝253云通讯平台国际短信API接口DEMO
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell创蓝253云通讯平台国际短信API接口DEMO相关的知识,希望对你有一定的参考价值。
#!/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的主要内容,如果未能解决你的问题,请参考以下文章