V
V
Vadim Ushakov2021-10-16 07:26:06
JavaScript
Vadim Ushakov, 2021-10-16 07:26:06

How to find the hCaptcha checker callback?

Almost the same as reCaptcha. In general, there is a question of automating hCaptcha verification, everything goes fine except for

}, {
            key: "renderCaptcha",
            value: function() {
                if (this.state.isApiReady) {
                    var e = hcaptcha.render(this.ref.current, o(o({}, this.props), {}, {
                        "error-callback": this.handleError,
                        "expired-callback": this.handleExpire,
                        callback: <b>this.handleSubmit</b>
                    }));
                    this.setState({
                        isRemoved: !1,
                        captchaId: e
                    })
                }
            }
        }, {
finding the token validation callback function, how to find this.handleSubmit function?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question