Reputation: 1039
I am creating an application where I do interaction with files in Azure storage account with java services. I want to open uploaded files in office 365 so that I can edit them. How I can do that?
Is there any reference code available for the same to do it with service from java?
Upvotes: 0
Views: 2040
Reputation: 136336
To view the Office files (Word, Excel, PowerPoint) in Office 365 online document viewer, you can create a link to your blob by using Online Doc Viewer
utility. Essentially the link that will be created will be:
https://view.officeapps.live.com/op/view.aspx?src=<Encoded URL of Blob>
Please note that:
Shared Access Signature
with at least Read
permission to view the documents.Upvotes: 3