ActivityDetectionUtils.java 2.25 KB
package com.subsidy.util;

import com.tencentcloudapi.captcha.v20190722.CaptchaClient;
import com.tencentcloudapi.captcha.v20190722.models.DescribeCaptchaResultRequest;
import com.tencentcloudapi.captcha.v20190722.models.DescribeCaptchaResultResponse;
import com.tencentcloudapi.common.Credential;
import com.tencentcloudapi.common.profile.ClientProfile;
import com.tencentcloudapi.common.profile.HttpProfile;

import javax.servlet.http.HttpServletRequest;

public class ActivityDetectionUtils {

    /**
     * 活跃度检测工具类
     * @param request
     * @param randstr
     * @return
     * @throws Exception
     */

    public static DescribeCaptchaResultResponse activityDetection(HttpServletRequest request,String ticket, String randstr) throws Exception {

        // 实例化一个认证对象,入参需要传入腾讯云账户secretId,secretKey,此处还需注意密钥对的保密
        // 密钥可前往https://console.cloud.tencent.com/cam/capi网站进行获取
        Credential cred = new Credential(ConstantUtils.SECRET_ID, ConstantUtils.SECRET_KEY);
        // 实例化一个http选项,可选的,没有特殊需求可以跳过
        HttpProfile httpProfile = new HttpProfile();
        httpProfile.setEndpoint("captcha.tencentcloudapi.com");
        // 实例化一个client选项,可选的,没有特殊需求可以跳过
        ClientProfile clientProfile = new ClientProfile();
        clientProfile.setHttpProfile(httpProfile);
        // 实例化要请求产品的client对象,clientProfile是可选的
        CaptchaClient client = new CaptchaClient(cred, "", clientProfile);
        // 实例化一个请求对象,每个接口都会对应一个request对象
        DescribeCaptchaResultRequest req = new DescribeCaptchaResultRequest();
        req.setCaptchaType(9L);
        String ip = IpAddressUtil.getIpAddress(request);
        req.setUserIp(ip);
        req.setRandstr(randstr);
        req.setCaptchaAppId(ConstantUtils.CAPTCHAAPP_ID);
        req.setAppSecretKey(ConstantUtils.APP_SECRET_KEY);
        req.setBusinessId(ConstantUtils.BUSINESS_ID);
        req.setTicket(ticket);
        // 返回的resp是一个DescribeCaptchaResultResponse的实例,与请求对象对应
        return client.DescribeCaptchaResult(req);
    }

}