One Drive API - Downloading documents as PDF - onedrive

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.

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

How to access (read/write) advanced file EXIF/metadata in the Dropbox JavaScript API?

How to access (read/write) advanced file metadata in the Dropbox JavaScript API?
I'm talking about things like e.g.: MacOS file tags. Or the camera model inside the EXIF data.
Please note that dbx.filesGetMetadata(arg) does not provide very detailed metadata... Almost only dropbox specific metadata actually.
Any ideas?
Kudos to Greg.
The Dropbox API unfortunately doesn't natively return Mac OS file metadata/xattrs, or the full EXIF information for a file. The Dropbox API currently only natively returns a few pieces of basic media information in FilesFileMetadata.media_info, e.g., if you set FilesGetMetadataArg.include_media_info to true when calling filesGetMetadata or filesListFolder/filesListFolderContinue.
To get any other metadata embedded in the file content, you'll need to download the file content and parse it out client-side.

How to list the contents of a zipped uploaded to google drive folder using 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!

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!

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.