问题
I am trying to implement embedded DocuSign sender view, I am using the node SDK to get the URL and display it in the Iframe, the problem is that when I try to open it, I get the following error.
Docusign Error
This happens in Safari v13.
Anyone who has gone through the same thing that can help me?
回答1:
Most browsers protect you against using a page in an iframe that comes from a different domain. to overcome this you have to tell the browser that it's safe and you are OK with this. Add this to your top HTML page:
"xFrameOptions": "allow_from",
"xFrameOptionsAllowFromUrl": "https://docusign.net"
来源:https://stackoverflow.com/questions/59971140/docusign-refused-to-display