I want to read the data in google spread using c#.I am able to authenticate google drive but I am unable to read the data in google spread sheet.I have used following code
SpreadsheetsService myService = new SpreadsheetsService("Sample ProjectSheets");
myService.setUserCredentials(My emailid, My password);
SpreadsheetQuery query = new SpreadsheetQuery();
SpreadsheetFeed feed = myService.Query(query);
In the above code , I am getting exception at myService.Query(query) as An unhandled exception of type 'Google.GData.Client.GDataRequestException' occurred in Google.GData.Client.dll and build the above code by refering following link:Accessing Google Spreadsheets with C# using Google Data API. I have one more doubt what to mention as application name in SpreadsheetsService object.