google

Using google search API services in the backend using C#

I'm trying to use the google search API services in the backend using C#. I know there is ajax api that you can use with javascript. so what is the similar thing in C# so I can use it at the backend level. I know that I can do it this way: var searchTerm = "Paris"; var web = new WebClient(); web.Headers.Add("Referrer", "http://localho...

Is there a way to only search for specific kinds of books such as textbooks with Google Book Search API?

I noticed that there are a few a classes such as CategoryFilter that can be used on the VolumeQuery in the Google Book Search Java API. Could this be used for only searching for specific kinds of books like textbooks, or is there a better approach to this kind of search? There doesn't seem to be too many examples online or details in the...

Google Reader API?

Hey, Is there any Google Reader API that I can plug in to? I building a clean RSS/Atom reader in PHP and would love to get all the goodies from Google Reader like the history of a feed, able to add comments to each feed item, etc. Thanks! ...

Reading Zip file in Google App Engine using java (Struts)

Hi, I am having problems reading a zip file that I have uploaded to the server (GAE). I am uploading a zip file with a csv file that I need to read in order to write to the database. However, GAE does not allow direct writing of the file on server. How do I open an inputstream to read the file? I am using struts framework. Part of my up...

Getting a 401 "unauthorized" when calling Google Docs API using SignPost from Android

I am able to call GET successfully and get lists of docs and spreadsheets from Google Documents List API and Spreadsheets API using OAuth with SignPost in Android. However, I have spent hours trying to make a successful POST call and keep getting a 401. I Would appreciate any hints or comments. Thanks Here is the code: //I get the secr...

Using the RESTful interface to Google's AJAX Search API for "Did you mean"?

Is it possible to get spelling/search suggestions (i.e. "Did you mean") via the RESTful interface to Google's AJAX search API? I'm trying to access this from Python, though the URL query syntax is all I really need. Thanks! ...