应用程序发明者2 POST

时间:2014-10-26 10:34:37

标签: php android http post app-inventor

我想在webviewer应用中集成appinventor组件。

我希望应用程序POST已准备好PHP脚本。我不想使用GET。所以服务器上的PHP看起来像:

<?php echo $_POST['value']; ?>

我的appinventor块看起来像:

enter image description here

这不起作用。任何帮助赞赏。 感谢。

编辑:第二次尝试。谢谢@YiWei。 enter image description here

2 个答案:

答案 0 :(得分:4)

添加requestheaders:content-type:application/x-www-form-urlencodedbuildrequestData

enter image description here

答案 1 :(得分:2)

webviewer只能做GET
这应该有效:

enter image description here

使用web组件,您可以在Web.GotText事件中获得结果 enter image description here

另见documentation