当前位置:   article > 正文

企业微信机器人 api 使用_企业微信机器人api

企业微信机器人api

key 来自:
在这里插入图片描述

一、发送消息

function sendText(key = '', text = '', mentioned = []) {
	try {
		axios({
	        method: 'post',
	        url: 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key='+ key,
	        data: {
	          msgtype: 'text',
	          text: {
	            content: text,
	            mentioned_list: mentioned
	          }
	        }
	      })
	} catch (error) {
      console.log(error)
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

二、发送文件
要先上传到企业微信的服务器里,获得 id 后,再发送 id

上传文件

import FormData from 'form-data'
import fs from 'fs'
import axios from 'axios'

uploadFile = (key = '', filePath = '') => {
  try {
    const readStream = fs.createReadStream(filePath)
    const formData = new FormData()
    formData.append('media', readStream)

    return axios
      .post('https://qyapi.weixin.qq.com/cgi-bin/webhook/upload_media?type=file&&key=' + key, formData, {
        headers: {
          'Content-Type': 'multipart/form-data'
        }
      })
      .then(({ data }) => {
        return data.media_id || ''
      })
  } catch (error) {
    console.log(error)
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

通过得到的 id,发送文件到企业微信:

sendFile = (key ='', id = '') => {
  try {
    axios({
      method: 'post',
      url: 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=' + key,
      data: {
        msgtype: 'file',
        file: {
          media_id: id // 从 uploadFile 处获得
        }
      }
    })
  } catch (error) {
    console.log(error)
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

和发送文本不同的是,里面的 data 不同

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/178438
推荐阅读
相关标签
  

闽ICP备14008679号