feat: json参数
This commit is contained in:
BIN
app/__pycache__/main.cpython-310.pyc
Normal file
BIN
app/__pycache__/main.cpython-310.pyc
Normal file
Binary file not shown.
@@ -1,5 +1,6 @@
|
||||
from fastapi import FastAPI
|
||||
import requests
|
||||
import json
|
||||
|
||||
app = FastAPI()
|
||||
|
||||
@@ -15,6 +16,9 @@ async def root():
|
||||
async def root():
|
||||
headers = {'Content-Type': 'application/json'}
|
||||
# https://open.feishu.cn/open-apis/bot/v2/hook/5fb1b44c-3446-42ef-9b3a-dd37731567dd
|
||||
r = requests.post('https://httpbin.org/post',
|
||||
data={'msg_type': 'text', "content": {"text": "request example"}}, headers=headers)
|
||||
try:
|
||||
r = requests.post('https://open.feishu.cn/open-apis/bot/v2/hook/5fb1b44c-3446-42ef-9b3a-dd37731567dd',
|
||||
data=json.dumps({'msg_type': 'text', "content": {"text": "request example"}}), headers=headers)
|
||||
except(e):
|
||||
print('e')
|
||||
return {"message": "触发飞书webhook"}
|
||||
|
||||
Reference in New Issue
Block a user