Reputation: 1
How can i set a auto welcome message and group rules to new joining members to the group. I saw many videos in Youtube with bots (which are created by others), Is there any simply way to set a welcome messages with group rules with a facebook link with OWN BOT i mean the Bot which we created
Upvotes: 0
Views: 6346
Reputation: 888
The method getUpdates
will give you an array of Update
s. If the update is due to a new member entering the chat you will find update.message.new_chat_members
which will have an array of User
s.
So when you get an update new_chat_members
then you can make your bot send any message you want with sendMessage
Check the API documentation here and here.
Upvotes: 0