Search code examples
proxylocalhostrecaptcha

Google Recaptcha using proxy


I want to use google recaptcha on my website but the problem is I am using a proxy server to connect to the internet and bypassing the proxy server for testing my code on localhost. Is there anyway we can use google recaptcha sitting behind a proxy ? Thanks in advance !


Solution

  • try

                System.setProperty("http.proxyHost", "YourHostName");
                System.setProperty("http.proxyPort", 80);