admin管理员组文章数量:1410712
When run: MyPopWindow.postMessage("Test", 'mydomaine'); I have a error on MyPopWindow whith script.google:
(program):1 Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('mydomaine') does not match the recipient window's origin ('').
When run: MyPopWindow.postMessage("Test", ''); I have a error on MyPopWindow:
dropping postMessage.. was from host mydomaine but expected host https : // ******-script.googleusercontent
Source in page on mydomaine:
window.addEventListener("DOMContentLoaded", function() {
window.addEventListener("message", function(e) {
// wait for child to signal that it's loaded.
if ( e.data === "loaded" && e.origin === iframe.src.split("/").splice(0, 3).join("/")) {
// send the child a message.
alert(e.data);
}
})
}, false)
When run: MyPopWindow.postMessage("Test", 'mydomaine'); I have a error on MyPopWindow whith script.google.:
(program):1 Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('mydomaine') does not match the recipient window's origin ('https://script.google.').
When run: MyPopWindow.postMessage("Test", 'https://script.google.'); I have a error on MyPopWindow:
dropping postMessage.. was from host mydomaine but expected host https : // ******-script.googleusercontent.
Source in page on mydomaine:
window.addEventListener("DOMContentLoaded", function() {
window.addEventListener("message", function(e) {
// wait for child to signal that it's loaded.
if ( e.data === "loaded" && e.origin === iframe.src.split("/").splice(0, 3).join("/")) {
// send the child a message.
alert(e.data);
}
})
}, false)
Source on my Google Apps Script runing as WebApp:
document.addEventListener('DOMContentLoaded', function () {
// signal the parent that we're loaded.
window.parent.postMessage("loaded", "*");
// listen for messages from the parent.
window.addEventListener("message", function(e) {
if(event.origin !== 'mydomain') return;
var message = e.data;
alert(message);
}, false);
});
Share
asked Oct 13, 2016 at 6:49
user144039user144039
331 silver badge5 bronze badges
2 Answers
Reset to default 3To send a message from the Google apps Script window/iframe to the parent window, I've found out that the following code works for me;
if(window.parent.parent !== window.top){
window.top.postMessage("Test", "mydomaine");
};
Sadly, I haven't, at least yet, found a way to send messages from the parent window to the Google apps script window/iframe.
-------Edit-------
I found the solution on sending a message to iframe from parent window! It's really quite simple;
The code of the parent window;
fetch('your google apps scipt webapp url', {
method: 'POST',
body: JSON.stringify('the message you want to send to the
iframe')
})
.then(response => {
if (response.ok) {
console.log('String sent successfully to Google Apps
Script');
} else {
console.error('Error sending string to Google Apps
Script');
}
})
.catch(error => {
console.error('Error:', error);
});
The code of the .gs file in your Google apps script;
const userProperties = PropertiesService.getUserProperties();
function doPost(request) {
var payload = JSON.parse(request.postData.contents);
userProperties.setProperty('retrievedMessage', payload);
}
Then, In any function in the .gs file you can use:
const retrievedMessage = userProperties.getProperty('retrievedMessage');
Note:
In the above I am using the GAS Properties Service which offers 3 methods:
- Script Properties
- User Properties (What I used in my example code)
- Document Properties
This error message es from one of App Scripts Javascript driver files. This is extra security Google added on to prevent people from using the postMessage system.
It seems Google wants to force you to use one of their accepted protocols for munication between windows/domains, namely the Execution API. I have attempted other methods like passing URL parameters, but so far none have worked because I could not access them from within the iframe that all apps scripts run in.
I believe the Execution API is your best bet.
本文标签: javascriptwindowpostMessage to scriptgooglecom as popupStack Overflow
版权声明:本文标题:javascript - window.postMessage to script.google.com as popup - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744926078a2632606.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论