我用PHP创建了一个漫游器,并将其添加到了我的组中,
该小组的成员可以通过该小组向机器人发送命令。
我现在想做的是,一旦有新用户进入群组, ($ username已加入该组)
会向他显示一些味精“ Welcome $ username!...”
无需键入/ start
直到现在我已经使用了欢迎机器人:
https://github.com/jh0ker/welcomebot
但是我想知道是否有可能通过PHP进行这种自动欢迎消息。
那样:
if($message == "$username has joined group"){
sendMessage($chatId,"Welcome $username!");}
答案 0 :(得分:0)
您应该使用new_chat_members
https://core.telegram.org/bots/api#message
消息中有很多od参数,应该使用new_chat_members
:
new_chat_members:用户数组可选。添加到组或超组中的新成员以及有关它们的信息(机器人本身可能是这些成员之一)
message.content_types=['new_chat_members']