user2469761
user2469761

Reputation: 15

Javascript access google spreadsheet

Can javascript retrieve username and password from google spreadsheet, where google spreadsheet store username and password like below,

row 1 user1,pass1 row 2 user2,pass2

Upvotes: 0

Views: 609

Answers (1)

Parag Jadhav
Parag Jadhav

Reputation: 1899

You directly can not use JavaScript to access Google Spreadsheet. Instead you can use Google Apps Script having almost all functionalities of JavaScript. You can read about Google Apps Script here

Using Apps Script Spreadsheet API you can perform CRUD operations on spreadsheet. Hope this helps

Upvotes: 1

Related Questions