在AppsScript和Wordpress之间进行通信

时间:2016-12-07 09:42:06

标签: wordpress google-apps-script

我想要一个Google Apps脚本Web应用程序来捕获Wordpress中的当前用户名。 我一直在研究这个问题,但我无法理解。 我试过这种方式 - 在wp中我运行代码:

<?php $current_user = wp_get_current_user(); echo '<div id="username" style="visibility: hidden;">' . $current_user->user_login . '</div>'; ?>

现在我尝试从google webapp(在iframe中)捕获ID内容,但我无法访问父元素。我怎样才能在两者之间进行交流?

1 个答案:

答案 0 :(得分:2)

您可以将值作为参数发送到iframed webapp。

主页:

> f1()
[1] "Error in f2() : This is a child error message\n"

apps脚本:

<?php $current_user = wp_get_current_user(); echo '<iframe src="https://script.google.com/macros/s/.../exec?name=' . $current_user->user_login . '"></iframe>'; ?>