views:

27

answers:

1

Hi,

I want to retrive search results from google images from my .net application. Is there any way out there?

Thanks, Subhen

+3  A: 

Yes, there is.

The Google Image Search API offers access through a RESTful interface, as described here, on the API reference page.

You can use e.g. the WebRequest class to make the API calls, and use one of the JSON libraries as listed on this page, such as Json.NET or JSONSharp to parse the returned JSON data.

Aistina
You could also use the WCF Rest Starter Kit. http://msdn.microsoft.com/en-us/netframework/cc950529.aspx and http://www.asp.net/downloads/starter-kits/wcf-rest
Cornelius