码迷,mamicode.com
首页 > Web开发 > 详细

腾讯防水墙(滑动验证码)的简单使用 https://007.qq.com

时间:2018-09-29 13:09:51      阅读:2124      评论:0      收藏:0      [点我收藏+]

标签:enc   调用   ring   form   开始   sub   ons   .com   ==   

在线体验:https://007.qq.com/online.html

快速开始:https://007.qq.com/quick-start.html

简单使用:

1. 引入 JS

<script src="https://ssl.captcha.qq.com/TCaptcha.js"></script>

2. 写一个JS方法

// 腾讯防水墙 https://007.qq.com
function submitFormWithCaptcha() {
    // 直接生成一个验证码对象
    var captcha = new TencentCaptcha(‘AppID‘, function (res) {
        console.log(res)
        // res(未通过验证)= {ret: 1, ticket: null}
        // res(验证成功) = {ret: 0, ticket: "String", randstr: "String"}
        if (res.ret === 0) {
                //票据
                //alert(res.ticket)  
                //随机串
                //alert(res.randstr)  
                submitForm();
        } 
    });
    // 显示验证码
    captcha.show(); 
}

3. 页面的某个按钮调用这个方法。

4. 后台方法(略)

 

腾讯防水墙(滑动验证码)的简单使用 https://007.qq.com

标签:enc   调用   ring   form   开始   sub   ons   .com   ==   

原文地址:https://www.cnblogs.com/anjou/p/9723065.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!