using System;
using System.Collections.Generic;
using System.Text;
namespace CommonUtil.Web
{
///
/// 发送企微机器人
///
public class SendQwGroup
{
///
///
///
public static void SendMessage(string message)
{
try
{
string body = "{\"msgtype\": \"markdown\",\"markdown\":{\"content\":\"" + message + "\"}}";
string res = new WebUtil().DoPostWithJson("https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=1e5a8b47-b108-40a6-9a29-d629863bd066", body, null);
body = "{\"msgtype\": \"text\",\"text\":{\"content\":\"您有新的消息需要处理\",\"mentioned_mobile_list\":[\"13382447768\",\"15862977578\",\"17315773080\"]}}";
res = new WebUtil().DoPostWithJson("https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=1e5a8b47-b108-40a6-9a29-d629863bd066", body, null);
}
catch
{
}
}
}
}