提示:
因为运营商政策,请先在后台完成报备签名、模板及做相关设置(详见接入引导),再开发API。
验证码类短信,请在手机验证环节,加入行为验证码,以免被恶意攻击。
HTTP头信息:
Accept:application/json;charset=utf-8; Content-Type:application/x-www-form-urlencoded;charset=utf-8;
请求
URL:https://sms.yunpian.com/v2/sms/single_send.json
注意:海外服务器地址 us.yunpian.com
访问方式:POST
http支持:支持https 与 http 两种访问,建议使用https
附注:如需使用"extend""uid"参数,可免费向客服申请。
public static String singleSend(String apikey, String text, String mobile) { Map<String, String> params = new HashMap<String, String>(); params.put("apikey", apikey); params.put("text", text); params.put("mobile", mobile); return post("https://sms.yunpian.com/v2/sms/single_send.json", params); }
php请求示例
public function singleSend($apikey, $text, $mobile) {
$param = [
'apikey' => $apikey,
'mobile' => $mobile,
'text' => $text,
];
return post("https://sms.yunpian.com/v2/sms/single_send.json", params);
}
cURL请求示例
curl -X "POST" "https://sms.yunpian.com/v2/sms/single_send.json"
-H "content-type: application/x-www-form-urlencoded"
-d "apikey=4d6cxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
-d "mobile=158xxxxxxxx"
-d "text=【云片网】您的验证码是1234"
SDK接入
云片提供多种语言的SDK以供您快速接入API。
|