|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web;
|
|
|
|
|
using Aliyun.Acs.Core;
|
|
|
|
|
using Aliyun.Acs.Core.Exceptions;
|
|
|
|
|
using Aliyun.Acs.Core.Profile;
|
|
|
|
|
using Aliyun.Acs.Dysmsapi.Model.V20170525;
|
|
|
|
|
|
|
|
|
|
namespace BookingWeb.Helper
|
|
|
|
|
{
|
|
|
|
|
public class AliMessageTools
|
|
|
|
|
{
|
|
|
|
|
static String product = "Dysmsapi";//短信API产品名称
|
|
|
|
|
static String domain = "dysmsapi.aliyuncs.com";//短信API产品域名
|
|
|
|
|
static String accessId = "LTAILD56g1iYWp9A";
|
|
|
|
|
static String accessSecret = "YyBCXDVqj3SJF5TPR3zct02wzFlDrg";
|
|
|
|
|
static String regionIdForPop = "cn-hangzhou";
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发送验证码短信
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="phoneNum"></param>
|
|
|
|
|
/// <param name="signName"></param>
|
|
|
|
|
public static void SendSignCodeMsg(string phoneNum,string code)
|
|
|
|
|
{
|
|
|
|
|
IClientProfile profile = DefaultProfile.GetProfile(regionIdForPop, accessId, accessSecret);
|
|
|
|
|
DefaultProfile.AddEndpoint(regionIdForPop, regionIdForPop, product, domain);
|
|
|
|
|
IAcsClient acsClient = new DefaultAcsClient(profile);
|
|
|
|
|
SendSmsRequest request = new SendSmsRequest();
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
//request.SignName = "上云预发测试";//"管理控制台中配置的短信签名(状态必须是验证通过)"
|
|
|
|
|
//request.TemplateCode = "SMS_71130001";//管理控制台中配置的审核通过的短信模板的模板CODE(状态必须是验证通过)"
|
|
|
|
|
//request.RecNum = "13567939485";//"接收号码,多个号码可以逗号分隔"
|
|
|
|
|
//request.ParamString = "{\"name\":\"123\"}";//短信模板中的变量;数字需要转换为字符串;个人用户每个变量长度必须小于15个字符。"
|
|
|
|
|
//SingleSendSmsResponse httpResponse = client.GetAcsResponse(request);
|
|
|
|
|
request.PhoneNumbers = phoneNum;
|
|
|
|
|
request.SignName = "MYSHIPPING";
|
|
|
|
|
request.TemplateCode = "SMS_142152966";
|
|
|
|
|
request.TemplateParam = "{\"code\":\""+code+"\"}";
|
|
|
|
|
request.OutId = "001";
|
|
|
|
|
//请求失败这里会抛ClientException异常
|
|
|
|
|
SendSmsResponse sendSmsResponse = acsClient.GetAcsResponse(request);
|
|
|
|
|
System.Console.WriteLine(sendSmsResponse.Message);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (ServerException e)
|
|
|
|
|
{
|
|
|
|
|
System.Console.WriteLine("ServerException");
|
|
|
|
|
}
|
|
|
|
|
catch (ClientException e)
|
|
|
|
|
{
|
|
|
|
|
System.Console.WriteLine("ClientException");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|