I am using reCapcha on my local test server. Everything is working fine, but I have errors:
Blocked a frame with origin "https://www.google.com" from accessing a frame with origin "http://127.0.0.1:8000". The frame requesting access has a protocol of "https", the frame being accessed has a protocol of "http". Protocols must match.
and
Blocked a frame with origin "https://www.google.com" from accessing a frame with origin "http://127.0.0.1:8000". The frame requesting access has a protocol of "about", the frame being accessed has a protocol of "http". Protocols must match.
in html:
... <script src='https://www.google.com/recaptcha/api.js'></script> </head> ... <div class="g-recaptcha" data-sitekey="..."></div>
How to fix these errors?
Thanks!
source share