当前位置:   article > 正文

Python通过飞书机器人推送消息至飞书群中_python飞书机器人发送图片模版

python飞书机器人发送图片模版

首先需要在飞书开发者页面定制飞书消息卡片,然后将卡片的json复制出来即可。

import json
import requests
from requests_toolbelt import MultipartEncoder


class Send_feishu_msg:
    # 应用凭证,获取方式查看上面的步骤
    app_id = "cli_xxxxxxxxxxxxxxx"
    app_secret = "nEkQ8A2x13_xxxxxxxxxxx"
    # 机器人webhook
    chatGPT_url = 'https://open.feishu.cn/open-apis/bot/v2/hook/xxxxxxxxxxxxx'
    headers = {
        "Content-Type": "application/json; charset=utf-8",
    }
    json_data = {
        "config": {
            "wide_screen_mode": True
        },
        "header": {
            "template": "green",
            "title": {
                "tag": "plain_text",
                "content": "
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/71411
推荐阅读
相关标签