handsome目前有微信发送和google浏览器发送时光机
本人技术有限写了个py发送的脚本
目前想法用py采集每日一言或者笑话自动发送,水平有限只能给出发代码采集部分还没撸好。

# -*- coding: utf-8 -*-
import requests
import hashlib

key = '11111111' #时光机验证编码
s = requests.Session()
def getmd5(s):
    return hashlib.md5(s.encode('utf-8')).hexdigest()

date = {
    "action": "send_talk",
    "time_code": getmd5(str(key)),
    "cid": "146",  #时光机cid
    "token":"crx", #识别浏览器还是微信改成其他的不显示
    "content": "来自py脚本", #发送文字
    "msg_type": "text",
    "mediaId": "1"
}
url = 'https://www.529i.com/'
req = s.post(url=url,data=date)
print req.text
如果觉得我的文章对你有用,请随意赞赏