How to get data from google spread sheets in c# -


i want read data in google spread using c#.i able authenticate google drive unable read data in google spread sheet.i have used following code

   spreadsheetsservice myservice = new spreadsheetsservice("sample projectsheets");      myservice.setusercredentials(my emailid, password);     spreadsheetquery query = new spreadsheetquery();     spreadsheetfeed feed = myservice.query(query); 

in above code , getting exception @ myservice.query(query) an unhandled exception of type 'google.gdata.client.gdatarequestexception' occurred in google.gdata.client.dll , build above code refering following link:accessing google spreadsheets c# using google data api. have 1 more doubt mention application name in spreadsheetsservice object.


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -