我用电报设置了一个webhook,基本上使用这个代码从我的服务器向电报发送消息:
header("Content-Type: application/json");
$parameters = array('chat_id' => xxx, "text" => "hi there");
$parameters["method"] = "sendMessage";
echo json_encode($parameters);
这一切都是可行的。
问题是我不能一个接一个地发送两条消息。
我试了两次回音:
header("Content-Type: application/json");
$parameters = array('chat_id' => xxx, "text" => "hi there");
$parameters["method"] = "sendMessage";
echo json_encode($parameters);
$parameters["text"] = "hi everybody";
echo json_encode($parameters);
我尝试发送一系列信息:
header("Content-Type: application/json");
$parameters = array('chat_id' => xxx, "text" => array("hi there", "hi everybody"));
$parameters["method"] = "sendMessage";
echo json_encode($parameters);
都没有成功。
我做错什么了??