Where can I find the latest Google Docs API with sample source code?

I am trying to use the Google Spreadsheet API in C # by following these instructions .

I downloaded the API from the official Downloads page . However, there are two things to this:

  • The API seems to be outdated because I could not find the class OAuth2Parameters

    mentioned in the tutorial, only OAuthParameters

    .

  • The examples directory contains only executables and source code. I could actually use the source code of the Spreadsheet.exe sample as it suits me very well.

+3


source to share


1 answer


You can grab the source code on the page. I just did this and created it with no problem. OAuth2Parameters

is in the file oauthparameters.cs

. I don't know if there is a binary release of the latest version of the libraries, I'm afraid.



(Note that I work for Google, but this post is not written on behalf of Google - I didn't have much in common with the GData API, although I know someone who has, so if this answer is not helpful, I may get more information on Monday ...)

+2


source







All Articles