調取創藍253國際短信驗證碼-代碼示例2
阿新 • • 發佈:2018-07-25
一個 http obi 手機 手機號 例如 ofo art pass 說明:
以下代碼只是為了方便客戶測試而提供的示例代碼,客戶可以根據自己的需要另行編寫
該代碼僅供學習和研究接口使用,只是提供了一個參考
require ‘net/http‘
require ‘uri‘
require ‘json‘
params = {
"account" => "",
"password" => "a.123456",
手機號碼,格式(區號+手機號碼),例如:8615800000000,其中86為中國的區號
"mobile" => "8615800000000", "msg" =>URI::escape("【253雲通訊】您好,您的驗證碼是999999")
}.to_json
def send_data(url,data)
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
end
send_data(‘http://intapi.253.com/send/json‘,params)
調取創藍253國際短信驗證碼-代碼示例2