zoukankan      html  css  js  c++  java
  • 1.短信通知

    发短信:

    登入阿里云官网:

    申请短信模板

     1  class Program
     2     {
     3         static void Main(string[] args)
     4         {
     5             string accessKeyId = "这儿是你的accessKeyId";
     6             string accessKeySecret = "这儿是你的accessKeySecret";
     7 
     8             string phoneNumbers = "13806412311";
     9             string signName = "我是签名";
    10             string templateCode = "SMS_0...";
    11             string name = "我是name";
    12             string Class = "我是Class";
    13             string uniqueIdentification = Guid.NewGuid().ToString("N");
    14 
    15             IClientProfile profile = DefaultProfile.GetProfile("cn-hangzhou", accessKeyId, accessKeySecret);
    16             DefaultAcsClient client = new DefaultAcsClient(profile);
    17             CommonRequest request = new CommonRequest();
    18             request.Method = MethodType.POST;
    19             request.Domain = "dysmsapi.aliyuncs.com";
    20             request.Version = "2017-05-25";
    21             request.Action = "SendSms";
    22             request.AddQueryParameters("PhoneNumbers", phoneNumbers);
    23             request.AddQueryParameters("SignName", signName);
    24             request.AddQueryParameters("TemplateCode", templateCode);
    25             request.AddQueryParameters("TemplateParam", "{'name':'" + name + "','class':'" + Class + "'}");
    26             request.AddQueryParameters("OutId", uniqueIdentification);
    27             // request.Protocol = ProtocolType.HTTP;
    28             try
    29             {
    30                 CommonResponse response = client.GetCommonResponse(request);
    31                 Console.WriteLine(System.Text.Encoding.Default.GetString(response.HttpResponse.Content));
    32                 Console.ReadLine();
    33             }
    34             catch (ServerException e)
    35             {
    36                 Console.WriteLine(e);
    37             }
    38             catch (ClientException e)
    39             {
    40                 Console.WriteLine(e);
    41             }
    42 
    43         }
    44     }
    测试代码

    给申请的阿里云服务器开端口

    阿里云官网:https://www.aliyun.com/

    步骤:控制台--->(产品与服务)云服务器ECS--->安全组(配置规则)---进行手动添加端口即可

    作者:chenze
    出处:https://www.cnblogs.com/chenze-Index/
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
    如果文中有什么错误,欢迎指出。以免更多的人被误导。
  • 相关阅读:
    套接字描述符在多进程和多线程下的共享
    广播和多播
    原始套接字和数据链路层访问
    Libevent:11使用Libevent的DNS上层和底层功能
    Lib1vent:10链接监听器接受TCP链接
    Libevent:9Evbuffers缓存IO的实用功能
    Libevent:7Bufferevents基本概念
    python生成url测试用例
    OMD开源监控软件
    iptable防范ddos攻击
  • 原文地址:https://www.cnblogs.com/chenze-Index/p/10749340.html
Copyright © 2011-2022 走看看