zj
2025-05-07 9c492d2f1a205aeb068994bc228627e6196de432
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,"");
    }
 
 
}