Now that Google's discontinued their SOAP API, what can I use to search from C# code?

I know they have a Javascript AJAX API – I've implemented it and it works – but I just need to do the same thing but from the backend code.

link|improve this question

Google has a lot of APIs - it would help to know what you are trying to do from your back-end C# code. – Jim Lamb Apr 5 '10 at 19:11
Search and retrieve the results of that search. – Matt Apr 5 '10 at 19:37
feedback

2 Answers

up vote 2 down vote accepted

The AJAX API has a RESTful interface. Have a look here in the section titled "Flash and other Non-Javascript Environments"

For Flash developers, and those developers that have a need to access the Web Search API from other Non-Javascript environments, the API exposes a simple RESTful interface. In all cases, the method supported is GET and the response format is a JSON encoded result set with embedded status codes.

link|improve this answer
feedback

This is a piece of code, just for the record:

var searchTerm = "ABCD";
using (var web = new WebClient())
{
    web.Headers.Add("Referrer", "http://your-website-here/");
    var result = web.DownloadString(String.Format(
           "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q={0}&key=your-key-here", 
           searchTerm));
    Console.WriteLine(result);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.