Google Drive API - Update Spreadsheet data
google-drive-api
Solution
The Google Drive API is meant for generic file / folder interactions. For directly modifying Google Spreadsheet data, the Google Sheets API would be the better choice.
Problem
I want to send data from my web application to a google drive spreadsheet, so it will be easier for other people see data. So I have one spreadsheet and I want to add lines to it whenever there is new data. My question is, is there an option to just add a line to a spreadsheet? If not, then I suppose the only way to accomplish this is by getting the file, adding the line, and than uploading again?