Reputation: 153
I am wondering if it is possible in Nativescript(in maybe any way) to pull data from google spreadsheet. I need it in the app I'm making now.
I was trying to implement https://www.npmjs.com/package/google-spreadsheet in my ionic app with no success, and I want to try Nativescript for it's "native" nature. :)
Upvotes: 0
Views: 390
Reputation: 8139
You can use the Sheets API to access spreadsheets from any programming language. Alternatively you could also create a web app with Apps Script. Such a web app runs on Google's servers. It can have full access to your spreadsheets and your mobile app can communicate with it through http. That means the web app wouldn't have a UI of it's own. It just serves as a middleman to relay information.
Upvotes: 2