我正在尝试从Zoho发送json数据。 postUrl函数似乎在发送之前正在编码。例如发送:
{"dog":{"type":"beagle"}}
卷曲的会准确发送该信息。但是Zoho发送
dog=%7B%22type%22%3A%22beagle%22%7D
测试功能如下:
void send_test()
{
// go to <?php print file_get_contents('php://input'); ?>
info postUrl("servername/showinput.php",{"dog":"{\"type\":\"beagle\"}"},{"Content-Type":"application/json"},false);
}
在Zoho中,有人知道这种方法吗?