googleappinventor在他们的文档中有一些关于使用python或appengine设置示例TinyWebDB服务的信息,但是,我正在尝试使用php。这可能吗?我已经按贴的指示做了
here
但我得到的只是一个错误:
遇到协议异常
我将此错误显示在
label
TinyWebDB1.WebServiceError
获取值.php
header('Cache-Control: no-cache, must-revalidate');
header('Expires: Mon, 26 Jul 2010 05:00:00 GMT');
header('Content-type: application/json');
$retval = array("VALUE", "tagged", '"'.time().'"');
echo json_encode($retval);
返回:
[“VALUE”,“taged”,“1283093117\”“]
设置值.php
$tag = $_POST['tag'];
$value = $_POST['value'];
$retval = array("STORED", '"'.$tag.'"', '"'.$value.'"');
echo json_encode($retval);
返回:
[“存储”、“标记”、“测试数据”]