在smartchart中新建一个数据源,如下图
新建一个数据集并使用qiweiMsg这个数据源, 按照企微消息发送文档填写, 记下数据集ID如 12
{
"touser" : "1359xxxxx",
-- "totag" : "4",
"msgtype" : "text",
"agentid" : xxxxxxx,
"text" : {
"content" : "$msg"
},
"safe":0}
- 在DAG中可以使用通过自定义任务来进行企微发送
def notice_content():
return get_dataset(12, param={'msg':'hello world'})
#diy qiwei_notice notice_content