Gists
This sample script is for directly using the refreshed access token by googleapis for Node.js. When oauth2Client.refreshAccessToken((err, tokens) => {}); is used to retrieve the refreshed access token, the following error occurs.
DeprecationWarning: The refreshAccess
Token method has been deprecated, and will be removed in the 3.0 release of goo
gle-auth-library. Please use the getRequestHeaders method instead.
It is required to use getRequestHeaders(). But I couldn’t find the sample script using getRequestHeaders(). So I created this sample script. If this was useful for you, I’m glad.
Gists
When I create applications for using Google Drive, I often retrieve a file list from a folder in the application. So far, I had created the script for retrieving a file list from a folder for each application. Recently, I thought that if there is the script for retrieving the file list with the folder tree from the folder of Google Drive as a library, it will be useful for me and other users. So I created them.
Overview
This is a python library to retrieve the file list with the folder tree from the specific folder of Google Drive.
Description
When I create applications for using Google Drive, I often retrieve a file list from a folder in the application. So far, I had created the script for retrieving a file list from a folder for each application. Recently, I thought that if there is the script for retrieving the file list with the folder tree from the folder of Google Drive as a library, it will be useful for me and other users. So I created this.
node module - google-drive-getfilelist was updated to v1.0.3
You can get this from https://github.com/tanaikech/node-getfilelist
You can also get this from https://www.npmjs.com/package/google-drive-getfilelist
Overview
This is a Node.js module to retrieve the file list with the folder tree from the specific folder of Google Drive.
Description
When I create applications for using Google Drive, I often retrieve a file list from a folder in the application. So far, I had created the script for retrieving a file list from a folder for each application. Recently, I thought that if there is the script for retrieving the file list with the folder tree from the folder of Google Drive as a module, it will be useful for me and other users. So I created this.
goodls was updated to v.1.1.1
The detail information and how to get this are https://github.com/tanaikech/goodls.
go-getfilelist was updated to v1.0.1
You can get this from https://github.com/tanaikech/go-getfilelist
ImgApp was updated to v1.2.1.
You can see the detail information here https://github.com/tanaikech/ImgApp
ggsrun was updated to v.1.5.2
- v1.5.2 (November 4, 2018)
- About downloading folders, when files are downloaded from a folder, you can download Google Docs files with the mimeType you want. For example, when you download files from the folder, if
-e txt is used, Google Docs are downloaded as the text file. When -e pdf is used, they are downloaded as the PDF file. Of course, there are mimeType which cannot be converted.
$ ggsrun d -f [folderName] -e txt -j
- About uploading files, when files are uploaded from your local PC, the files got to be able to be converted to Google Docs. For this, new option of
--convertto, -c is added. For example, when a text file is uploaded, if you use -c doc, the text file is uploaded as Google Document.
$ ggsrun u -f [fileName] -c doc -j
You can check ggsrun at https://github.com/tanaikech/ggsrun.
goodls was updated to v.1.1.0
The detail information and how to get this are https://github.com/tanaikech/goodls.