Has anyone programed this yet

5 replies
I think the first time i saw this method was in a report by Daniel Tan a couple years ago. He mentioned having the process programmed.

It is the method of doing a search for a keyphrase in Google.
"Dog treats". putting it into quotes, then going to the bottom of the page of results and continuing to click on the page numbers until Google says something like
In order to show you the most relevant results, we have omitted some entries very similar to the 300 already displayed.

If someone did already do it can someone please point me in the right direction.
Should be a keyword search tool that functions like most bringing back the competition results, keyword ideas and then include as well the number Google shows at the end of clicking to end of the pages numbers for each term.


If not what?????? Let me know
Thanks
Barry
#programed
  • Profile picture of the author OliCartwright
    Hi,

    This could likely be achieved using a browser control in a windows app having it run the search through Google then have the code target the last anchor in the numbered lists. In the 'page load' event have it do the same over and over until it detects the 'omitted' text then have it do what you need e.g. log it to a file and begin the next keyword or notify the user if only one keyword is needed.

    Alternatively you could use some macro automation tool like AutoIt and do it semi-manually in a browser of your choosing.
    {{ DiscussionBoard.errors[8874191].message }}
  • Profile picture of the author michaelgoldstein
    Originally Posted by actionbiz View Post

    I think the first time i saw this method was in a report by Daniel Tan a couple years ago. He mentioned having the process programmed.

    It is the method of doing a search for a keyphrase in Google.
    "Dog treats". putting it into quotes, then going to the bottom of the page of results and continuing to click on the page numbers until Google says something like
    In order to show you the most relevant results, we have omitted some entries very similar to the 300 already displayed.

    If someone did already do it can someone please point me in the right direction.
    Should be a keyword search tool that functions like most bringing back the competition results, keyword ideas and then include as well the number Google shows at the end of clicking to end of the pages numbers for each term.


    If not what?????? Let me know
    Thanks
    Barry
    You could do this with CURL (PHP)
    PHP: CURL context options - Manual

    Fetch the first page, then the second page, etc. until you get your notice.

    First page:
    https://www.google.com/?#q=%22Dog+treats%22
    Second page:
    https://www.google.com/?#q=%22Dog+treats%22&start=10
    Third page:
    https://www.google.com/?#q=%22Dog+treats%22&start=20
    etc.
    {{ DiscussionBoard.errors[8875664].message }}
  • Profile picture of the author ClicProject
    Your going to want to rotate proxy ips if you are going to run many automated queries on google search results, or it will block your ip pretty quickly and make you enter a captcha.
    {{ DiscussionBoard.errors[8883776].message }}
  • Profile picture of the author mlcmartin
    I have programmed it before myself. It was a tool I programmed for finding high PR blogs. It is fairly trivial to program this.
    {{ DiscussionBoard.errors[8900980].message }}

Trending Topics