zj
2025-05-06 6d9097ff8bd28926562d20a8dc1836d673ba4dc6
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,"");
    }
 
 
}