【Ruby】国际短信API接口demo
2021-04-01 05:26
标签:ica content 研究 cape 使用 格式 type net 自己 require ‘net/http‘ params = { }.to_json def send_data(url,data) end send_data(‘http://intapi.253.com/send/json‘,params) 【Ruby】国际短信API接口demo 标签:ica content 研究 cape 使用 格式 type net 自己 原文地址:http://blog.51cto.com/13750674/2134078以下代码只是为了方便客户测试而提供的示例代码,客户可以根据自己的需要另行编写
该代码仅供学习和研究接口使用,只是提供了一个参考
require ‘uri‘
require ‘json‘
"account" => "",
"password" => "a.123456", 手机号码,格式(区号+手机号码),例如:8615800000000,其中86为中国的区号
"mobile" => "8615800000000",
"msg" =>URI::escape("【253云通讯】您好,您的验证码是999999")
url = URI.parse(url)
req = Net::HTTP::Post.new(url.path,{‘Content-Type‘ => ‘application/json‘})
req.body = data
res = Net::HTTP.new(url.host,url.port).start{|http| http.request(req)} puts res.body
文章标题:【Ruby】国际短信API接口demo
文章链接:http://soscw.com/index.php/essay/70789.html