Forum Discussion
Is it possible to embed a SharePoint link in an iframe?
I have some files sitting in OneDrive. They are Word documents. I would like to be able to view them inside of a dialog (as read-only). Is it possible to show a document in an iframe?
e.g.
(I have removed the real parameters)
const fileUrl =
'https://mytenant-my.sharepoint.com/:w:/g/personal/myalias_mytenant_onmicrosoft_com/docid';
<iframe
height="900"
width="900"
src={fileUrl}
>
</iframe>
ā
2 Replies
Aubrey_Quinn Did you try adding the host URL to SharePoint HTML Field Security?
Follow documentation: Allow or restrict the ability to embed content on SharePoint pages
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
- Aubrey_Quinn
Microsoft
ganeshsanap Thank you
I am not trying to embed content into SharePoint but rather the other way around. I want to embed a SharePoint doc in an external 1st party application.
Do you know if it's possible to do that?