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,"");
| }
|
|
| }
|
|