代码如下

#-*-coding:utf8-*-
import requests
url = 'http://nbzch.synology.me:5080/web-notepad/msg'
post_data = {
    'text':'1234'
}
post_html = requests.post(url,data=post_data)

发表评论