选择群
► 右键
► 管理聊天信息
► 添加群机器人
webhook
地址webhook
地址,如果一旦泄露,可以通过移除机器人,再重新创建一个去处理webhook
地址,可以看到文档说明,也可以进行普通的推送消息配置支持文本(text)、markdown(markdown)、图片(image)、图文(news)
四种消息类型webhook
地址即可实现消息推送// 文本消息类型
{
"msgtype": "text",
"text": {
"content": "广州今日天气:29度,大部分多云,降雨概率:60%",
"mentioned_list":["wangqing","@all"],
"mentioned_mobile_list":["13800001111","@all"]
}
}
// markdown消息类型
{
"msgtype": "markdown",
"markdown": {
"content": "实时新增用户反馈<font color=\"warning\">132例</font>,请相关同事注意。\n
>类型:<font color=\"comment\">用户反馈</font>
>普通用户反馈:<font color=\"comment\">117例</font>
>VIP用户反馈:<font color=\"comment\">15例</font>"
}
}
// 图片消息类型
{
"msgtype": "image",
"image": {
"base64": "DATA",
"md5": "MD5"
}
}
// 图文消息类型
{
"msgtype": "news",
"news": {
"articles" : [
{
"title" : "中秋节礼品领取",
"description" : "今年中秋节公司有豪礼相送",
"url" : "www.qq.com",
"picurl" : "http://res.mail.qq.com/node/ww/wwopenmng/images/independent/doc/test_pic_msg1.png"
}
]
}
}
Thinkphp
框架为例,将错误预警整合到项目中,实现实时错误推送config
配置文件添加错误处理类,执行哪个文件来处理错误markdown
类型进行推送'exception_handle' => '\\app\\common\\exception\\WorkWx',
<?php
namespace app\common\exception;
use Exception;
use itbdw\Ip\IpLocation;
use app\common\util\Helper;
use think\exception\Handle;
use think\exception\HttpException;
use think\exception\ValidateException;
class WorkWx extends Handle
{
const WEBHOOK = '填写你自己的webhook地址';
public function render(Exception $e)
{
$clientIP = Helper::getClientIp();
$clientAddress = IpLocation::getLocation($clientIP);
unset($clientAddress['ip']);
$ipAddress = implode('-', $clientAddress);
// 参数验证错误
if ($e instanceof ValidateException) {
$data = [
'msgtype' => 'markdown',
'markdown' => [
'content' => "来自 **<font color=\"info\">天眼</font>** 的温馨提醒,请相关同事注意。
>**描述:** <font color=\"comment\">参数验证错误</font>
>**端IP:** <font color=\"comment\">{$clientIP}</font>
>**地址:** <font color=\"comment\">{$ipAddress}</font>
>**状态:** <font color=\"comment\">{$e->getCode()}</font>
>**行数:** <font color=\"comment\">{$e->getLine()}</font>
>**文件:** <font color=\"red\">{$e->getFile()}</font>
>**提示:** <font color=\"warning\">{$e->getError()}</font>
>**信息:** <font color=\"warning\">{$e->getMessage()}</font>"
]
];
return Helper::postCurl(self::WEBHOOK, json_encode($data));
}
// 请求异常
if ($e instanceof HttpException) {
$data = [
'msgtype' => 'markdown',
'markdown' => [
'content' => "来自 **<font color=\"info\">天眼</font>** 的温馨提醒,请相关同事注意。
>**描述:** <font color=\"comment\">请求异常</font>
>**端IP:** <font color=\"comment\">{$clientIP}</font>
>**地址:** <font color=\"comment\">{$ipAddress}</font>
>**状态:** <font color=\"comment\">{$e->getCode()}</font>
>**行数:** <font color=\"comment\">{$e->getLine()}</font>
>**文件:** <font color=\"red\">{$e->getFile()}</font>
>**信息:** <font color=\"warning\">{$e->getMessage()}</font>"
]
];
return Helper::postCurl(self::WEBHOOK, json_encode($data));
}
// 其他错误交给系统处理
return parent::render($e);
}
}
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。