Forums

403 on a whitelisted site

I'm building a tool that looks in a site's source code for keywords to see if they have certain analytics tools installed.

I'm currently on a free account, so when I try to access the site I get a 403. But I even get a 403 with whitelisted sites. Here's the offending piece of code:

response = urllib.request.urlopen("https://google.com")

Am I missing something? I might be willing to upgrade to a paid account, but I want to make sure this error wouldn't still persist.

For free users, the domain *.google.com is whitelisted- so something like smtp.google.com would work but not google.com.

Paying users do not go through the proxy server/have this problem.

Ok, thanks!