Click here to Skip to main content
15,893,663 members
Articles / Web Development / ASP.NET

.NET Google Search REST API Integration

Rate me:
Please Sign up or sign in to vote.
4.79/5 (11 votes)
30 Dec 2009CPOL4 min read 73.8K   3.5K   53  
Article and code demonstrating how to integrate the Google Search REST API within a .NET project.

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "WebSite", "WebSite\", "{935B03F1-B71C-4EE2-A36E-C701BA9A1CB4}"
	ProjectSection(WebsiteProperties) = preProject
		TargetFramework = "3.5"
		ProjectReferences = "{299A46BA-1E61-4768-91D0-A426F97E3C99}|Cognize.Framework.GoogleSearchAPIIntegration.dll;"
		Debug.AspNetCompiler.VirtualPath = "/WebSite"
		Debug.AspNetCompiler.PhysicalPath = "WebSite\"
		Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\WebSite\"
		Debug.AspNetCompiler.Updateable = "true"
		Debug.AspNetCompiler.ForceOverwrite = "true"
		Debug.AspNetCompiler.FixedNames = "false"
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.VirtualPath = "/WebSite"
		Release.AspNetCompiler.PhysicalPath = "WebSite\"
		Release.AspNetCompiler.TargetPath = "PrecompiledWeb\WebSite\"
		Release.AspNetCompiler.Updateable = "true"
		Release.AspNetCompiler.ForceOverwrite = "true"
		Release.AspNetCompiler.FixedNames = "false"
		Release.AspNetCompiler.Debug = "False"
		VWDPort = "49291"
		DefaultWebSiteLanguage = "Visual C#"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cognize.GoogleSearchAPIIntegration", "Cognize.GoogleSearchAPIIntegration\Cognize.GoogleSearchAPIIntegration.csproj", "{299A46BA-1E61-4768-91D0-A426F97E3C99}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{935B03F1-B71C-4EE2-A36E-C701BA9A1CB4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{935B03F1-B71C-4EE2-A36E-C701BA9A1CB4}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{935B03F1-B71C-4EE2-A36E-C701BA9A1CB4}.Release|Any CPU.ActiveCfg = Debug|Any CPU
		{935B03F1-B71C-4EE2-A36E-C701BA9A1CB4}.Release|Any CPU.Build.0 = Debug|Any CPU
		{299A46BA-1E61-4768-91D0-A426F97E3C99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{299A46BA-1E61-4768-91D0-A426F97E3C99}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{299A46BA-1E61-4768-91D0-A426F97E3C99}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{299A46BA-1E61-4768-91D0-A426F97E3C99}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) App Software Ltd Software and Web Development
United Kingdom United Kingdom
I am a software and web developer living in South West England, working for a company App Software Ltd.

Comments and Discussions