We have a cloud audit application. When performing an audit, the user usually downloads a lot of documents. Currently, to view documents, he must download them. The business requirement is that when you click on a document, it should open directly on another browser tab using Office 365, like dropbox / onedrive. The user should be able to view, edit, save it on the server (without downloading) and close it. How to achieve this in our application?
Our webapp is built using ReactJS, NodeJS and MongoDB. Whenever a user loads a document, it is saved in the AWS S3 bucket.
I went through the Microsoft Graphics APIs and OneDrive RestAPI. It seems like the only solution is to use the OneDrive API to save files to OneDrive instead of S3. And then this should allow you to use Office365 applications. This is the right decision? Did I miss something?
Is there any other solution?
source share