-->

Is there any way I can use google-image serach API

2019-07-20 10:21发布

问题:

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

回答1:

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.