阿里大鱼

Java整合阿里大鱼

萝らか妹 提交于 2020-03-27 18:15:14
3 月,跳不动了?>>> 接着上一篇的知识 我们入门学习了阿里大鱼的短信服务 本篇将其融入代码中 1. 使用API进行发送短信 步骤一:查看帮助文档 阿里大鱼API https://help.aliyun.com/product/44282.html?spm=5176.12212976.0.0.15b31cbeK3Pm5Y 步骤二:确定到Java开发中的代码 示例demo https://help.aliyun.com/document_detail/101893.html?spm=a2c4g.11174283.6.651.62c72c42nxOfdH 步骤三:搜索到sendsms 步骤四:选项详解 2. 使用工具类发送短信 步骤一:修改pom.xml文件,添加 阿里大鱼 SDK依赖 步骤二:拷贝工具类 步骤三:调用工具类,进行短信发送 步骤一:修改pom.xml文件,添加 阿里大鱼 SDK依赖 下面提供Maven坐标 <!--短信--> <dependency> <groupId>com.aliyuncs</groupId> <artifactId>aliyun-java-sdk-core</artifactId> </dependency> <dependency> <groupId>com.aliyuncs.dysmsapi</groupId> <artifactId

beego 阿里大鱼短信验证码接口

Deadly 提交于 2020-03-24 23:50:05
3 月,跳不动了?>>> 工作中需要用到短信登录注册验证,所以自己用beego写了个阿里大鱼的短信验证码接口 一、配置,beego的配置文件 conf/app.conf,这些注册阿里大鱼帐号就会分配给你,注册地址:http://www.alidayu.com/ sms_url=http://gw.api.taobao.com/router/rest sms_type=normal sms_AppKey=46745674567 sms_AppSecret=678467456745674567 sms_free_sign_name=一点通 sms_template_code=SMS_11060567 二、阿里大鱼的短信发送工具函数,我参照了https://github.com/ltt1987/alidayu这个包写的 package tools import ( "crypto/md5" "github.com/astaxie/beego" "github.com/astaxie/beego/httplib" "sort" "strings" "time" "fmt" ) func Send_alidayu(phone, sms_param string) (string, error) { sms_url := beego.AppConfig.String("sms_url")

PHP阿里大鱼短信验证

若如初见. 提交于 2019-12-18 01:21:11
PHP 阿里大鱼短信验证 第一步 登陆阿里大于注册账号,在用户管理中心创建应用,确定AppKEY和App Secret还有配置签名 第二步 在应用管理中选择SDK下载,或者直接点击http://download.csdn .NET /detail/s371795639/9695983下载,免费的哦亲 把下载好的资源解压放到ThinkPHP\Library\Vendor目录下如图 并不是所有的php文件都需要,就用如图所示Alidayu文件夹下那几个php文件,把Alidayu里面的php文件分别打开,在开始的一行添加代码(如果你下载的来自我发的链接,那就没必要添加这个代码了,因为我添加过了) namespace Vendor\Alidayu; 目的是为了在调用的时候不至于引入失败 第三步 可以写HTML了 <div class="form-group"> <div class="field field-icon-right"> <input type="text" id="admin" class="input" name="admin" placeholder="用户名" data-validate="required:请填写用户名,length#>=5:用户长度不符合要求" /> <span class="icon icon-user"></span> </div> </div