Reputation: 15
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
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