zj
2025-05-06 0a5de93f4212f260ddc65c9317632429e828c7dd
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.web.controller.tgbot;
 
import com.ruoyi.common.utils.http.HttpUtils;
 
public class TBot {
 
    public static void sendMsg(String token,String msg,String pid){
        HttpUtils.sendPost("https://api.telegram.org/bot"+token+"/sendMessage?text="+msg+"&chat_id="+pid,"");
    }
 
 
}