歡迎關注 『發現你走遠了』 博客,持續更新中
歡迎關注 『發現你走遠了』 博客,持續更新中
關注喵提醒的公眾號
# @Time : 2022/6/19 15:10
# @Author : 南黎
# @FileName: 喵提醒發送微信提醒.py
import time
import requests
id = '你的喵碼' #string,喵碼。指定發出的提醒,一個提醒對應一個喵碼。(必填)
text ='XX數據異常' #string,提醒附加內容。收到的提醒時,會在標題換行後顯示該內容,默認為空。
ts=str(time.time())#時間戳
print(ts)
type='json' #返回內容格式
request_url="http://miaotixing.com/trigger?"
#偽裝一個浏覽器頭發送請求(反爬的一個習慣操作,實際上不加請求頭偽裝也可以使用)
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36 Edg/87.0.664.47'}
result=requests.post(request_url+"id="+id+"&text="+text+"&ts="+ts+"&type="+type,headers=headers)
print(result)
本節內容來自https://mp.weixin.qq.com/s?__biz=MzIxNjQ1NzU2Mw==&mid=2247484435&idx=1&sn=9bc6a487b040552608150c3b4dce593d&scene=19#wechat_redirect
大家喜歡的話,給個,點個關注!給大家分享更多計算機專業學生的求學之路!
版權聲明:
發現你走遠了@mzh原創作品,轉載必須標注原文鏈接
Copyright 2022 mzh
Crated:2022-2-1
歡迎關注 『發現你走遠了』 博客,持續更新中
歡迎關注 『發現你走遠了』 博客,持續更新中