All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.dustlight.captcha.store.ReCaptchaV3Store Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package cn.dustlight.captcha.store;

import cn.dustlight.captcha.ReCaptchaProperties;
import cn.dustlight.captcha.recaptcha.ReCaptchaResult;
import cn.dustlight.captcha.recaptcha.ReCaptchaV3Result;
import org.springframework.http.HttpEntity;
import org.springframework.web.client.RestTemplate;

public class ReCaptchaV3Store extends ReCaptchaStore {

    public ReCaptchaV3Store(ReCaptchaProperties properties) {
        super(properties);
    }

    @Override
    protected ReCaptchaResult getResult(Object data, String url, RestTemplate template) {
        ReCaptchaResult result = template.postForEntity(url, data, ReCaptchaV3Result.class).getBody();
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy