Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm using google recaptcha v2 on my websites (html / php).

On the server side I am trying to contact google recaptcha to check the user's input:

$response = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=".$privatekey."&response=".$_POST['g-recaptcha-response']);

The line above is not working. It normally just times out. Occasionally it will work though.

IPv6 is the Issue

It appears to be an issue with the call to google resolving to IPv6 (from https://github.com/google/recaptcha/issues/193)

I have tried turning off IPv6 on my internet connection and that makes it work.

How do I fix this issue properly? I don't think I could turn off IPv6 on the servers (we use some shared hosting as well as a VPS). Is there a way to force it to resolve to IPv4?

Thanks!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
313 views
Welcome To Ask or Share your Answers For Others

1 Answer

Issue was that php could not verify the SSL certificate. The IPv4 / IPv6 was a bit of a red herring I think.

Great post here on that: file_get_contents(): SSL operation failed with code 1. And more


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...