Skip to main content

I created an app to prove the Docusign JS embedded signing with Focused View.  I am using C# at the server and JS/jQuery at the client.  I followed all of the steps in the article “How to request a signature using focused view” (https://developers.docusign.com/docs/esign-rest-api/how-to/request-signature-focused-view).

Everything on the server side is fine, but when the JS code runs to load the document for signing, I get the following permission errors:

Refused to frame 'https://apps-d.docusign.com/' because it violates the following Content Security Policy directive: "default-src 'self' https://js-d.docusign.com/". Note that 'frame-src' was not explicitly set, so 'default-src' is used as a fallback.

 

Refused to connect to 'http://localhost:49618/05e7fec…/browserLinkSignalR/…ationData.browserId&browserId=b7e3-320d&clientProtocol=1.3&_=1728595245739' because it violates the following Content Security Policy directive: "default-src 'self 'https://js-d.docusign.com/". Note that 'connect-src' was not explicitly set, so 'default-src' is used as a fallback.

 

browserLink:21 Refused to connect to 'http://localhost:49618/05e7fec…/browserLinkSignalR/…ationData.browserId&browserId=67df-3483&clientProtocol=1.3&_=1728595245767' because it violates the following Content Security Policy directive: "default-src 'self'https://js-d.docusign.com/". Note that 'connect-src' was not explicitly set, so 'default-src' is used as a fallback.

Refused to connect to 'wss://localhost:44335/DocusignJS/' because it violates the following Content Security Policy directive: "default-src 'self' https://js-d.docusign.com/". Note that 'connect-src' was not explicitly set, so 'default-src' is used as a fallback.


Note that my local app is running at https://localhost:7176/

My Content-Security-Policy header is as follows:

    <meta http-equiv="Content-Security-Policy" content="default-src 'self' https://js-d.docusign.com/;">
 

I am assuming that there is some other header I need to correct this, but haven’t found any information about what that should be.

Hello, did you try to get the C# quickstart from https://developers.docusign.com/docs/esign-rest-api/quickstart/ and try the Focused View example from the launcher? Can you try that one and let me know if that worked for you?


Yes. I did try that, however, these examples are not using focused view or any JS functions from https://js-d.docusign.com/bundle.js.  My implementation uses the JS functions.   


We do have an example in the quickstart that uses Focused View. If you install the right-most (everything) package and search for “Focused View” you’ll find it. 
Let me know if you cannot find it. 


Thanks.

I did find the focused view in the everything package, but the problem with this sample code is that it requires me to sign in to docusign to make it work.  My use case is for a seamless signing for our customers to sign a purchase agreement through our account.  This should not require a signed in DS user.

How can I modify the quick start code such that it is using our DS account, and not requiring a signed in DS user to proceed?


Reply