SHELL
SHELL代碼示例
#接口類型:達信通國際短信接口。 #賬戶注冊:請通過該地址開通賬戶http://sms.wx96.com/register.html #注意事項: #(1)調試期間,請仔細閱讀接口文檔; #(2)請使用 用戶名 及 APIkey來調用接口,APIkey在會員中心可以獲取; #(3)該代碼僅供接入達信通短信接口參考使用,客戶可根據實際需要自行編寫; #!/bin/sh #用戶名是登錄wx96.com賬號名(例如:cf_demo123) account="用戶名" #密碼 查看密碼請登錄用戶中心->國際短信>帳戶及簽名設置->APIKEY password="密碼" #修改為您要發送的手機號 mobile="136xxxxxxxx" #短信內容 content="Your verification code is 1125" echo "send sms:" curl --data "account=$account&password=$password&mobile=$mobile&content=$content&rd=1" "http://api.isms.wx96.com/webservice/isms.php?method=Submit" echo -e "\n query balance:" curl --data "account=$account&password=$password" "http://api.isms.wx96.com/webservice/isms.php?method=GetNum"