How to list the contents of a zipped uploaded to google drive folder using API? - api

Many large zip-files are uploaded to my google drive. Before downloading I need to preview this zip-archive for understanding what files are in it.
On Google Drive website I can preview zip-archive and see files\directories list.
Is it possible if I use Google Drive API?
Thank you a lot!

Related

Denied Access downloading file from google drive api

How to upload a file using the google drive api and when the file is getting opened it will not show a restriction message and allow any user to open it.
For example I have this URL
https://drive.google.com/file/d/1cvmvU-Tz66Z7x3ukHqLgoB9BY9pxftrn/view?usp=drivesdk
That was uploaded from the app but it got restricted.
You have the control to share files from Google Drive and upload files and folders to Google Drive.
You can share the files and folders that you store in Google Drive
with anyone in your work or school, but your organization may limit
how you can share files with other people.
Also, you can visit this help forum post on to what extent you can allow everyone to upload in your drive.
Additional reference: Drive API Documentation

One Drive API - Downloading documents as PDF

Can I download files (docx, pptx, xlsx) saved to One Drive as PDF using the One Drive API?
I am able to do this using the Google Drive API using getExportLinks and specifying the application/pdf MIME Type to obtain a download URL.
Using Google is not an option so I'm looking for alternatives.
I don't see anything similar to this in the One Drive documentation.

Edit S3 doc with google docs and store it back to S3

I am trying to write a program that would allow my users to edit their S3 docs with Google Docs and then the program would store it back to their S3 bucket.
Any ideas on how to start?
I know its possible to simple open a document with google docs by supplying a URL.
While Google Docs is able to open a document from a URL, it cannot "save" the document back to Amazon S3.
Your users would need to save the document within Google Docs (on Google Drive), then your program would need to retrieve that document and save it into Amazon S3.
The problem is... how do you trigger your program to perform the export?
As an alternative, you could synchronize between Google Drive and Amazon S3. See:
Zapier
CloudHQ
GoodSync
...and probably many more!

Accesing files from shared in google drive

Im using drive api sample code for accessing google drive files in my app.But i cannot access the files that were shared with me.Do i need to change scope of google drive api in ios to access all files shared with me?
To get a list of the files shared with you, you can use the drive.files.list request with the sharedWithMe filter.

How can I get link for HTML files from Google Drive?

I am writing an iOS application, and I have some HTML files stored on Google Drive. I would like to retrieve the HTML file's links.
Any idea to get the HTML link from Google Drive?
If you're unable to hardcode the values of the file's URL, the only alternative is to use the Google Drive API on iOS.