-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace google.com with recaptcha.net #4284
Conversation
@@ -78,7 +78,7 @@ def do_signup(): | |||
if not token: | |||
errors.append('Google reCAPTCHA token is missing.') | |||
else: | |||
url = 'https://www.google.com/recaptcha/api/siteverify' | |||
url = 'https://www.recaptcha.net/recaptcha/api/siteverify' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is https://www.recaptcha.net? Do you have an info page on what it's used for / who runs it / how it uses data?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh I found it, it's google. Can you link to https://developers.google.com/recaptcha/docs/faq#can-i-use-recaptcha-globally in the comments?
@@ -78,7 +78,7 @@ def do_signup(): | |||
if not token: | |||
errors.append('Google reCAPTCHA token is missing.') | |||
else: | |||
url = 'https://www.google.com/recaptcha/api/siteverify' | |||
url = 'https://www.recaptcha.net/recaptcha/api/siteverify' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh I found it, it's google. Can you link to https://developers.google.com/recaptcha/docs/faq#can-i-use-recaptcha-globally in the comments?
I'll rebase this branch. |
14cd4e8
to
a865b4f
Compare
Reasons for making this change
This allows reCaptcha to be usable from within China. Refer to the reCaptcha documentation.
Related issues
Screenshots
Accounts page is unchanged.
Checklist