top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to get yahoo indexed page using api in C#

+1 vote
217 views
How to get yahoo indexed page using api in C#
posted Feb 21, 2016 by Rebwar Khalid

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Following is the Yahoo API, but as far as I know Yahoo API will not work as it is bing now
https://developer.yahoo.com/search/siteexplorer/V1/pageData.html

For the Bing you need to use CrawlStats.InIndex(), check the following link
https://msdn.microsoft.com/en-us/library/jj589695.aspx

Hope this should solve your problem :)

answer Feb 21, 2016 by Salil Agrawal
Similar Questions
+3 votes

I want get Number of indexed pages of any website so, it will give me exact number of pages in google.
What I have tried:

Uri queryUri = new Uri(string.Format("http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=site:{0}", url));
using (WebClient client = new WebClient())
{
    string getString = client.DownloadString(queryUri);
    dynamic s = JsonConvert.DeserializeObject(getString);
    var IndexedPage = s["responseData"]["cursor"]["estimatedResultCount"].Value;
    lblIndexedPageRecv.Text = IndexedPage;
}

its working but not giving me right answer

my code is giving different values then other online webCheckers like one of this: http://www.pingler.com/seo-tools/tools/google-indexed-pages-checker

+1 vote

I am trying to get all the collection names from MongoDb server using C# code using db.GetCollectionNames() method.

I have 12 collections in my database, but the above method returns an empty list. I have verified that I am referring to the correct database. What am I doing wrong? Or if there is an alternate way?

...