I’m seeking to get a HelloSign embedded template working in my web app. I have a created a HelloSign app using the domain name “my_domain_name.app”. I have tried to access that app by running the following code on the client:
HelloSign.init("[client id]");
HelloSign.open({
url: "https://app.hellosign.com/s/dkqicy67",
debug: true,
allowCancel: true,
container: document.getElementById('hellosign-iframe'),
messageListener: function(eventData) {
console.log(eventData)
}
});
I have my web app running on the specified domain (my_domain_name.app
). But I am getting an error message:
Refused to display 'https://app.hellosign.com/sign/lsjeuhdjggauewkyhh' in a frame because it set 'X-Frame-Options' to 'sameorigin'.
How can I correct this?