英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论