node-google-spreadsheet
node-google-spreadsheet copied to clipboard
Google Sheets API wrapper for Javascript / Typescript
Below is the code I'm currently using: ```ts const serviceAccountAuth = new JWT({ email: process.env.GOOGLE_SERVICE_ACCOUNT_EMAIL, key: process.env.GOOGLE_PRIVATE_KEY, scopes: ['https://www.googleapis.com/auth/spreadsheets'], }); const doc = new GoogleSpreadsheet('', serviceAccountAuth); await doc.loadInfo(); const data...
According to this document from Google: https://cloud.google.com/apis/docs/capping-api-usage#limiting_requests_per_user > To identify a user, use the quotaUser=userID URL query parameter. This value is for short-term quota enforcement only, so you don't need...
Trying to apply multiple links to a single cell, and it seems the simplest way is to craft my own textFormatRuns object. Feeling like if _rawData's textFormatRuns isn't exposed (...