Recaptcha actions aren’t being logged in the reports.

huangapple go评论50阅读模式
英文:

Recaptcha actions aren't being logged in the reports

问题

I'm executing the recaptcha script like this

let data = {
	action: 'homepage'
};

grecaptcha.ready(() => {
    grecaptcha.execute('RECAPTCHASITEKEY', data).then((token) => {
        recaptcha_token = token;
    });
});

And it works 'fine', except that the action is always being logged as submit in the reports. Does anyone know if there's anything else I need to do?

英文:

I'm executing the recaptcha script like this

let data = {
	action: 'homepage'
};

grecaptcha.ready(() => {
	grecaptcha.execute('RECAPTCHASITEKEY', data).then((token) => {
		recaptcha_token = token;
	});
});

And it works 'fine', except that the action is always being logged as submit in the reports. Does anyone know if there's anything else I need to do?

答案1

得分: 0

"Since we've gone live, we're now getting the action logged in the Google console, so I guess it needed a large dataset before it started logging."

英文:

Since we've gone live, we're now getting the action logged in the google console, so I guess it needed a large dataset before it started logging

huangapple
  • 本文由 发表于 2023年5月24日 23:27:58
  • 转载请务必保留本文链接:https://go.coder-hub.com/76325153.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定