python 使用Python调用Rocketchat Incoming Webhook

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用Python调用Rocketchat Incoming Webhook相关的知识,希望对你有一定的参考价值。

import requests
import json

uri = 'https://domain.com/hooks/1234AbcD'
data={}
data = {
    "username": "Python Bot",
    "icon_emoji": ":whale:",
    "attachments": [
        {
            "title": "Docker Release Notes",
            "title_link": "https://docs.docker.com/release-notes/docker-ce/",
            "text": "Docer CE Release Notes Information",
            "image_url": "https://storage.googleapis.com/static.ianlewis.org/prod/img/docker/large_v-trans.png",
            "color":"#764FA5"
        }
    ]
}

r = requests.post(uri, json.dumps(data)).content
print(r)

以上是关于python 使用Python调用Rocketchat Incoming Webhook的主要内容,如果未能解决你的问题,请参考以下文章

python可以直接调用win32的api吗

怎样用python调用dll

python成员函数如何调用静态函数

如何通过python调用新浪微博的API

c可以调用python吗

python调用完bat后,程序进入等待状态了