You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
I am using mifiel document.save function and if I put hosted or server pdf path to file:'path to my-file.pdf' it throws the error. If I put the local path while testing, it works fine. I am implementing in firebase sdk for cloud functions in node.js. Below the function from documentation for reference.
I am using mifiel document.save function and if I put hosted or server pdf path to file:'path to my-file.pdf' it throws the error. If I put the local path while testing, it works fine. I am implementing in firebase sdk for cloud functions in node.js. Below the function from documentation for reference.
const document = new Mifiel.Models.Document({
file: 'path/to/my-file.pdf',
signatories: [
{ name: 'Signer 1', email: '[email protected]', tax_id: 'AAA010101AAA' },
{ name: 'Signer 2', email: '[email protected]', tax_id: 'AAA010102AAA' }
]
})
document.save().then(doc => {
console.log(doc)
doc.original_hash
doc.file
doc.file_signed
})
The text was updated successfully, but these errors were encountered: