I need to know which of my URLs are indexed by Google

some urls of my site are duplicated. I need to know which of them are indexed by Google. I need some function in C # to find out which of my URLs are indexed.

0
source share
1 answer

In a Google search, you can enter: site: your_domain

And he will show you the results. You can use the Google Custom Search API for this. http://code.google.com/apis/customsearch/v1/overview.html

It returns JSON results that you can convert to C # objects using a DataContractSerializer.

You will need to sign up for an API key if you go this route.

Edit Html Agility Pack, , ,

-

+3

All Articles