简体   繁体   中英

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?

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.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM