Miguel Soto
Miguel Soto

Reputation: 23

Docusign Refused to display

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?

Upvotes: 0

Views: 651

Answers (1)

Inbar Gazit
Inbar Gazit

Reputation: 14050

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"

Upvotes: 1

Related Questions