Alper
Alper

Reputation: 1

How do I integrate google search into my C# program?

I'm working on a program in Visual C#.NET and I need some help.

I need it to be able to take in some text through a text box, then somehow send that text to google, and bring back the resulting URLs (not the full results, just the URLs) and then display those in my program. How would I do that?

Upvotes: 0

Views: 794

Answers (2)

abhilash
abhilash

Reputation: 5651

Unfortunately the Google Web Search API is deprecated and no longer available. However the next best thing IMO is Google Custom Search Engine.

Upvotes: 0

Oded
Oded

Reputation: 498992

Use the WebClient class to send the query to Google and read the response.

Alternatively, use a .NET library that interacts with the Google search API, like this one (this was just the first Google result).

There are also REST libraries for .NET, if you go with the newer custom search.

Upvotes: 2

Related Questions