I'm building an integration between my application and Docusign. This is flow:
- Log in to Docusign with credentials. OK
- Getting envelope from Docusign. OK
- Getting Recipient View URL. OK
- Open with received URL. OK
- User signs/declines document. OK
- Redirect to given URL. (when I build request I have set up a return URL)
I'm using API call : Recipientv2/accounts/:accountId/envelopes/:envelopeId/views/recipient (http://iodocs.docusign.com/#)
Everything is fine except step 6.
When using this flow in my application I get this error in FF:
Load denied by X-Frame-Options:
http://localhost:8080/#/land/10000?event=decline does not permit
framing.
In Chrome I get:
Refused to display 'http://localhost:8080/#/land/10001?event=decline'
in a frame because it set 'X-Frame-Options' to 'DENY'.
I'm using tomcat, spring, angularJs, ....
Any hints?
Thanks