Learn how to make the most out of the Dropbox Community here 💙.
Learn how to make the most out of the Dropbox Community here 💙.
Hi!
Based on the error message that you are encountering, it looks like you are not passing the client_id parameter while opening the signature request on an iframe.
Dropbox Sign provides a library that takes care of building and displaying the iframe on your platform. If you are using a modern module bundler with npm, simply install hellosign-embedded on your application.
Once your application has the hellosign-embedded library installed, you would use the following code snippet below to open the iframe:
const client = new HelloSign();
// Opening the iframe in Test Mode
client.open( "YOUR_SIGN_URL", {
testMode: true,
clientId: 'YOUR_CLIENT_ID',
skipDomainVerification: true,
});
Feel free to use our Embedded Testing Tool during testing as well.
Hope this helps!
Hi!
Based on the error message that you are encountering, it looks like you are not passing the client_id parameter while opening the signature request on an iframe.
Dropbox Sign provides a library that takes care of building and displaying the iframe on your platform. If you are using a modern module bundler with npm, simply install hellosign-embedded on your application.
Once your application has the hellosign-embedded library installed, you would use the following code snippet below to open the iframe:
const client = new HelloSign();
// Opening the iframe in Test Mode
client.open( "YOUR_SIGN_URL", {
testMode: true,
clientId: 'YOUR_CLIENT_ID',
skipDomainVerification: true,
});
Feel free to use our Embedded Testing Tool during testing as well.
Hope this helps!
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!