91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

nodejs通過釘釘群機器人推送消息

發布時間:2021-06-03 16:29:25 來源:億速云 閱讀:373 作者:Leah 欄目:web開發

這篇文章將為大家詳細講解有關nodejs通過釘釘群機器人推送消息,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

實現

代碼是 ts 實現的,用了 request 發起http請求,具體參數參考釘釘官方文檔,只實現了文本消息的推送,其它消息類似,再進行一層封裝,實現代碼如下:

import * as request from "request";
import * as log4js from "log4js";
const logger = log4js.getLogger("DingdingBot");
const ApplicationTypeHeader:string = "application/json;charset=utf-8";
// DingdingBot
// https://open-doc.dingtalk.com/microapp/serverapi2/qf2nxq
export class DingdingBot{
  private readonly _webhookUrl:string;
  constructor(webhookUrl:string){
    this._webhookUrl = webhookUrl;
  }
  public pushMsg (msg: string, atMobiles?: Array<string>): boolean{
    try {
      let options: request.CoreOptions = {
        headers: {
         "Content-Type": ApplicationTypeHeader
        },
        json: {
          "msgtype": "text", 
          "text": {
            "content": msg
          }, 
          "at": {
            "atMobiles": atMobiles == null ? [] : atMobiles,
            "isAtAll": false
          }
        }
       };
      request.post(this._webhookUrl, options, function(error, response, body){
        logger.debug(`push msg ${msg}, response: ${JSON.stringify(body)}`);
      });
    }
    catch(err) {
      console.error(err);
      return false;
    }    
  }
}

使用方式:

// botWebhookUrl 為對應釘釘機器人的 webhook 地址
let bot = new DingdingBot(botWebhookUrl);;
// 直接推送消息
bot.pushMsg("測試消息");
// 推送消息并 @ 某些人
var mobiles = new Array<string>();
mobiles.push("13255573334");
bot.pushMsg("測試消息并@", mobiles);

關于nodejs通過釘釘群機器人推送消息就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

金坛市| 铁岭县| 金阳县| 开江县| 航空| 汕头市| 皋兰县| 旬邑县| 新密市| 赤城县| 湖南省| 常熟市| 和硕县| 尚志市| 丹凤县| 视频| 洪雅县| 武夷山市| 沈阳市| 内乡县| 普兰县| 迁西县| 正镶白旗| 临桂县| 马尔康县| 定结县| 甘德县| 台湾省| 怀来县| 德江县| 禄丰县| 信宜市| 方正县| 和静县| 加查县| 舞钢市| 乌兰浩特市| 桓台县| 兴化市| 永登县| 枞阳县|