当前位置:   article > 正文

python-飞书机器人发送消息_飞书机器人发送信息

飞书机器人发送信息

首先建群,建机器人,不多说,自行操作,获取webhook,通过webhook发送信息,原api地址: https://open.feishu.cn/document/ukTMukTMukTM/ucTM5YjL3ETO24yNxkjN

在这里插入图片描述

1、发送普通消息,代码如下

import requests
import json

def get_data():
    data = {
        "msg_type": "text",
        "content": {
            "text": "你好"
        }
    }
    return json.dumps(data,ensure_ascii=True).encode("utf-8")
    
def req(data):
	#webhook
    url = "https://open.feishu.cn/open-apis/bot/v2/hook/111-22-33-44"
    header = {
        "Content-type": "application/json",
        "charset":"utf-8"
    }
    requests.post(url,data=data,headers=header)

if __name__ == '__main__':
    req(get_data())

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

效果图
在这里插入图片描述
2、发送富文本

import requests
import json

def get_data():
    data = {
        "msg_type": "post",
        "content": {
            "post": {
                "zh_cn": {
                    "title": "项目更新通知",
                    "content": [
                        [{
                            "tag": "text",
                            "text": "项目有更新: "
                        },
                        {
                            "tag": "a",
                            "text": "请查看",
                            "href": "https://www.baidu.com/"
                        },
                        {
                            "tag": "at",
                            "user_id": "123456"
                        }
                        ]
                    ]
                }
            }
        }
    }
    return json.dumps(data,ensure_ascii=True).encode("utf-8")


def req(data):
    url = "https://open.feishu.cn/open-apis/bot/v2/hook/11-11-22-33"
    header = {
        "Content-type": "application/json",
        "charset":"utf-8"
    }
    requests.post(url,data=data,headers=header)

if __name__ == '__main__':
    req(get_data())

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44

效果图
在这里插入图片描述

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

闽ICP备14008679号