45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# @Time : 2023/4/4 19:57
|
|
# @Author : Flora.Chen
|
|
# @File : client.py.py
|
|
# @Software: PyCharm
|
|
# @Desc: 模拟客户端像服务器发送请求
|
|
|
|
import requests
|
|
|
|
req_data = {
|
|
"ref": "refs/heads/master",
|
|
"before": "6c22220fabcf749fdcf4b31b79d5195ff0acb751ef82",
|
|
"after": "29f3333339413d42affe9f31e910782b24bb73aaec1540",
|
|
"commits": [
|
|
{
|
|
"id": "a96b8a2222247f9c1cb8882a966cbae239e09c8abc4b0",
|
|
"message": "xixixha222hahah",
|
|
"author": {
|
|
"name": "floraachy",
|
|
"email": "flower@qq.com",
|
|
"username": ""
|
|
},
|
|
"timestamp": "2023-04-07T17:28:28+08:00"
|
|
},
|
|
{
|
|
"id": "b1122222f9c1cb8882a966cbae239e09c8abc4b0",
|
|
"message": "bbaba22222babab1",
|
|
"author": {
|
|
"name": "flora",
|
|
"email": "flower@gitlink.com",
|
|
"username": ""
|
|
},
|
|
"timestamp": "2023-04-07T17:28:28+08:00"
|
|
},
|
|
],
|
|
"repository": {
|
|
"full_name": "floraachy/123123123",
|
|
}
|
|
}
|
|
res = requests.post("http://127.0.0.1:8070/mybot/?installer_id=85589", json=req_data)
|
|
|
|
print(res.status_code)
|
|
print(res.text)
|
|
# print(res.json())
|