搜索验证码
腾讯云验证码(Captcha)基于十道安全栅栏, 为网页、App、小程序开发者打造立体、全面的人机验证,最大程度地保护注册登录、活动秒杀、点赞发帖、数据保护等各大场景下的业务安全,同时为您提供更精细化的用户体验。
2. 单击新建验证,根据业务场景需求,设置验证名称、客户端类型、验证方式等参数。
3. 单击确定,完成新建验证,即可在验证列表中查看验证码密钥( CaptchaAppId 及 AppSecretKey)。
在 index.html 中
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue + TS</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script src="https://turing.captcha.qcloud.com/TCaptcha.js"></script>
</body>
</html>
<script lang="ts" setup>
function show() {
const captcha = new TencentCaptcha("你创建 CaptchaAppId 值", async (res: any) => {
console.log("res", res);
if (res.ret === 0) {
// 成功
}
});
// 显示验证码弹框
captcha.show();
}
</script>
<template>
<div @click="show">显示验证码</div>
</template>
<style lang="scss" scoped></style>
# node
npm install tencentcloud-sdk-nodejs --save
密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取
流程通了,返回体验套餐过期了。因为没钱不充值了最终结果没验证
// Depends on tencentcloud-sdk-nodejs version 4.0.3 or higher
const tencentcloud = require("tencentcloud-sdk-nodejs-captcha");
router.get("/captcha", async (ctx) => {
const CaptchaClient = tencentcloud.captcha.v20190722.Client;
// 实例化一个认证对象,入参需要传入腾讯云账户 SecretId 和 SecretKey,此处还需注意密钥对的保密
// 代码泄露可能会导致 SecretId 和 SecretKey 泄露,并威胁账号下所有资源的安全性。以下代码示例仅供参考,建议采用更安全的方式来使用密钥,请参见:https://cloud.tencent.com/document/product/1278/85305
// 密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取
const clientConfig = {
credential: {
secretId: "AKID7BKy...",
secretKey: "CF6pNjst00u...",
},
region: "",
profile: {
httpProfile: {
endpoint: "captcha.tencentcloudapi.com",
},
},
};
// 实例化要请求产品的client对象,clientProfile是可选的
const client = new CaptchaClient(clientConfig);
const params = {
// 固定填值:9。可在控制台配置不同验证码类型。
CaptchaType: 9,
// 前端回调函数返回的用户验证票据
Ticket: "tr03oA3-SxBeA7Kt2-4guGlSFusqTtWUTJxCFBTZTPPsB1jW7WdYnJ5nPLLfWhKZM7psEy8cDq0aVyJzw4TkT-4-R9udbuIRK67zRjYBumMydfGJk2XAgrsgbXA6asRJ5r-nWNVcaR-CeFnbGuev0ZzQ3JI3OYhHT9XdJ5UPQbLlkqPgCK3IpEeuaYKEsLuRFsJmyLwup1kBvo0*",
// 业务侧获取到的验证码使用者的外网IP
UserIp: "223.252.222.38",
// 前端回调函数返回的随机字符串
Randstr: "@vhO",
// 验证码应用ID。登录 验证码控制台,在验证列表的【密钥】列,即可查看到CaptchaAppId。
CaptchaAppId: 1111111,
// 验证码应用密钥。登录 验证码控制台,在验证列表的【密钥】列,即可查看到AppSecretKey。AppSecretKey属于服务器端校验验证码票据的密钥,请妥善保密,请勿泄露给第三方。
AppSecretKey: "IpIQAP12tXD...",
};
try {
const data = await client.DescribeCaptchaResult(params);
console.log("captcha", data);
ctx.body = {
code: 0,
msg: "验证成功",
data,
};
} catch (error) {
console.error("error", error);
ctx.body = {
code: 1,
msg: "验证失败",
data: error,
};
}
});