阿里大鱼短信功能使用

时间:2022-09-25 20:40:43

在http://www.alidayu.com/ 使用淘宝账号登录

进入管理中心

阿里大鱼短信功能使用

创建应用(阿里有更详细的说明:https://doc.alidayu.com/doc2/detail.htm?spm=0.0.0.0.4Ozcne&treeId=135&articleId=104431&docType=1)

阿里大鱼短信功能使用

创建后点设置查看app证书 

阿里大鱼短信功能使用

应用开发:https://doc.alidayu.com/doc2/detail.htm?spm=a3142.7629140.4.6.eIl0a8&treeId=135&articleId=104433&docType=1

 阿里大鱼短信功能使用


申请短信模板,先配置短信签名

阿里大鱼短信功能使用


配置短信模板

阿里大鱼短信功能使用

添加模板

阿里大鱼短信功能使用

应用测试 

网页测试

阿里大鱼短信功能使用

阿里大鱼短信功能使用


代码测试

新建工程,引入下载的dll文件

  static void Main(string[] args)
{
string url = "http://gw.api.taobao.com/router/rest";
string appkey = ""; //证书上的key
string secret = "";
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaAliqinFcSmsNumSendRequest req = new AlibabaAliqinFcSmsNumSendRequest();
req.Extend = "";//可不填
req.SmsType = "normal";
req.SmsFreeSignName = ""; //短信签名
req.SmsParam = " "; //模板中的信息
req.RecNum = "";//手机号
req.SmsTemplateCode = "";//模板ID
AlibabaAliqinFcSmsNumSendResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
}

请求参数

阿里大鱼短信功能使用