I'm having some information in Google Spreadsheets as a single sheet. Is there any way by which I can read this information from .NET by providing the google credentials and spreadsheet address. Is it possible using Google Data APIs. Ultimately I need to get the information from Google spreadsheet in a DataTable. How can I do it? If anyone has attempted it, pls share some information.
|
|
According to the .Net user guide: http://code.google.com/apis/spreadsheets/docs/2.0/developers_guide_dotnet.html Download the .Net client library: http://code.google.com/p/google-gdata/ Add these using statements:
Authenticate:
Get a list of spreadsheets:
Given a SpreadsheetEntry you've already retrieved, you can get a list of all worksheets in this spreadsheet as follows:
And get a cell based feed:
|
|||
|
|
|
|
I wrote a simple wrapper around Google's .Net client library, it exposes a simpler database-like interface, with strongly-typed record types. Here's some sample code:
There's also a LINQ provider that translates to google's structured query operators:
|
||
|
|
|
|
You can do what you're asking several ways:
|
||
|
|
|
|
http://code.google.com/apis/gdata/articles/dotnet_client_lib.html This should get you started. I haven't played with it lately but I downloaded a very old version a while back and it seemed pretty solid. This one is updated to Visual Studio 2008 as well so check out the docs! |
||
|
|
|
|
I'm pretty sure there'll be some C# SDKs / toolkits on Google Code for this. I found this one, but there may be others so it's worth having a browse around. |
||
|
|
