Our systems have detected unusual traffic

User avatar
ChrisGreaves
PlutoniumLounger
Posts: 15615
Joined: 24 Jan 2010, 23:23
Location: brings.slot.perky

Our systems have detected unusual traffic

Post by ChrisGreaves »

Correct Forum?

"Our systems have detected unusual traffic from your computer network. This page checks to see if it's really you sending the requests, and not a robot."

Google has, quite rightly IMHO, suspended operations on the grounds that malware might have overtaken my system.
I have programmed Word/VBA to loop along a local street here, checking every address from "3000 Wharton Way" to "3300 Wharton Way".
Right now I detect the Google pause and the MsgBox allows me to type the captcha and no harm done. (If I didn't do this I'd end up with about 250 identical text files which start "Our systems have detected unusual traffic ").

Apart from the hiccough at the start of such a run, is anyone aware of any other detrimental effects on this operation?
I read through the Google terms of service and didn't see anything banning a programmed loop to obtain data from pages of hits.

Code: Select all

Set doc = ie.Document
Dim strResult As String
If doc Is Nothing Then
    strResult = "strLoadLinkToDocument Failed to load document. " & strURL & vbCrLf
Else
    strText = doc.body.innertext
    If InStr(1, strText, "To continue, please type the characters below:") > 0 Then
        ' Got a captcha
        MsgBox "Got a captcha"
    Else
    End If
    Call UW.PutFileData(strFileName, strText)
End If
1.PNG
You do not have the required permissions to view the files attached to this post.
There's nothing heavier than an empty water bottle

User avatar
HansV
Administrator
Posts: 78467
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Our systems have detected unusual traffic

Post by HansV »

It's not really a VBA question, of course, but OK...

I don't know whether Google will block you if you keep this up.
Best wishes,
Hans

User avatar
ChrisGreaves
PlutoniumLounger
Posts: 15615
Joined: 24 Jan 2010, 23:23
Location: brings.slot.perky

Re: Our systems have detected unusual traffic

Post by ChrisGreaves »

HansV wrote:I don't know whether Google will block you if you keep this up.
A big fear.
I got smart yesterday and began saving each address's text file to the hard drive, so once it is d/l I can work from my offline copy while I'm tweaking code.
During development I could run, say, 20 addresses at a time, then wait 15 minutes etc.
Production runs would be quite something else.

P.S. Re "forum", thanks. I was stuck but figured it is a problem that affects programmers rather than web designers?
There's nothing heavier than an empty water bottle

User avatar
ChrisGreaves
PlutoniumLounger
Posts: 15615
Joined: 24 Jan 2010, 23:23
Location: brings.slot.perky

Re: Our systems have detected unusual traffic

Post by ChrisGreaves »

HansV wrote:I don't know whether Google will block you if you keep this up.
Good point, actually.
Made me think "What if I had to drop down to (shudder) Yahoo or other.

Then it dawned on me that just possibly, a different search engine might return cleaner data in terms of hits to analyze addresses. (toddles off to inspect Yahoo, Answers etc,...)
There's nothing heavier than an empty water bottle