【Python接口自动化】调用企业微信机器人

在企业微信群中添加机器人,得到webhook链接

官方配置文档:链接

def qiye():
    url = "webhook链接"
    headers = {'Content-Type': 'application/json;charset=utf-8'}
    data_text = {
        "msgtype": "text",
        "text": {
            "content": "广州今日天气:29度,大部分多云,降雨概率:60%", #文本内容,最长不超过2048个字节,必须是utf8编码
            # "mentioned_list":["wangqing","@all"],               #userid的列表,@指定人员,@all表示提醒所有人
            # "mentioned_mobile_list":["13800001111","@all"]      #手机号列表,@指定人员,@all表示提醒所有人
        }
    }
    r = requests.post(url,data=json.dumps(data_text),headers=headers)
    return r.text

你可能感兴趣的:(【Python接口自动化】,python,企业微信,机器人)