我正在编写一个将用户配置文件存储在数据库中的电报机器人。 你的名字是什么?
我可以使用电报机器人API执行此操作吗?
请帮帮我。
答案 0 :(得分:1)
在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