# 设置webhook
# https://api.telegram.org/bot<token>/setWebhook?url=<api_url>
# 查询webhook状态
# https://api.telegram.org/bot<token>/getWebhookInfo
# 设置群成员的权限 - 屏蔽
# https://api.telegram.org/bot<token>/restrictChatMember?chat_id=<群ID>&user_id=<用户ID>&can_send_messages=0&can_send_media_messages=0&can_send_polls=0&can_send_other_messages=0&can_add_web_page_previews=0&can_invite_users=0
# 发送验证消息-键盘
# https://api.telegram.org/bot<token>/sendMessage?chat_id=<群ID>&text=请点击验证按钮&reply_markup={"inline_keyboard":[[{"text":"验证1","callback_data":"Checked-1"},{"text":"验证2","callback_data":"Checked-2"}]]}
# 修改验证消息-键盘
# https://api.telegram.org/bot<token>/editMessageText?chat_id=<群ID>&message_id=51&text=验证失败 请重新验证&reply_markup={"inline_keyboard":[[{"text":"验证1","callback_data":"Checked-1"},{"text":"验证2","callback_data":"Checked-2"}]]}
# 设置群成员的权限 - 开放
# https://api.telegram.org/bot<token>/restrictChatMember?chat_id=<群ID>&user_id=<用户ID>&can_send_messages=0&can_send_media_messages=1&can_send_polls=1&can_send_other_messages=1&can_add_web_page_previews=1&can_invite_users=1
# 修改验证消息
# https://api.telegram.org/bot<token>/editMessageText?chat_id=<群ID>&message_id=51&text=验证成功欢迎加入群聊
# 删除验证消息
# https://api.telegram.org/bot<token>/deleteMessage?chat_id=<群ID>&message_id=51
# 踢人
# https://api.telegram.org/bot<token>/kickChatMember?chat_id=<群ID>&user_id=<用户ID>
# 从黑名单移除
# https://api.telegram.org/bot<token>/unbanChatMember?chat_id=<群ID>&user_id=<用户ID>
# 查询管理员
# https://api.telegram.org/bot<token>/getChatAdministrators?chat_id=<群ID>
# 弹出框提示
# https://api.telegram.org/bot<token>/answerCallbackQuery?callback_query_id=4052860370171645089&text=click&show_alert=0
# 查询群员信息
# https://api.telegram.org/bot<token>/getChatMember?chat_id=<群ID>&user_id=<用户ID>