I embed online documents through iframe, and I can use postMessage({
MessageId: ‘Action_Paste’,
SendTime: Date.now(),
Values: {
Mimetype: “text/plain;charset=utf-8”,
Data: text
}
}, ‘') to insert content, but when I try to pass it through postMessage(
JSON.stringify({
MessageId: ‘Action_SaveAs’,
Values: {
Filename: ‘Test Save.docx’,
Notify: true
}
}),
'’
);
When saving, I receive an error message “The document cannot be saved. Please check your permissions or contact the storage server administrator.” How can I troubleshoot this issue