如何从 Telegram 机器人中的用户获取输入(如名字)?
How to get an input (like firstname) from user in Telegram bot?
我正在编写一个将用户资料存储在数据库中的电报机器人程序。
你叫什么名字?
谁可以使用电报机器人 API 执行此操作?
请帮帮我。
在PHP中你可以这样做:
$content = file_get_contents("php://input");
$update = json_decode($content, true);
$chatID = $update["message"]["chat"]["id"];
$userName = $update["message"]["from"]["first_name"];
$userMessage = $update["message"]["text"];
有关更多信息,请查看:https://core.telegram.org/bots/api#message
我正在编写一个将用户资料存储在数据库中的电报机器人程序。 你叫什么名字?
谁可以使用电报机器人 API 执行此操作?
请帮帮我。
在PHP中你可以这样做:
$content = file_get_contents("php://input");
$update = json_decode($content, true);
$chatID = $update["message"]["chat"]["id"];
$userName = $update["message"]["from"]["first_name"];
$userMessage = $update["message"]["text"];
有关更多信息,请查看:https://core.telegram.org/bots/api#message