我正在尝试在调用 Azure 函数时使用 azure alert 发送的有效负载。
def main(req: func.HttpRequest) -> func.HttpResponse:
logging.info('Python HTTP trigger function processed a request.')
req_body = req.get_json()
print(req_body)
但在 req_body 变量中没有得到任何东西。任何人都知道如何在 python azure 函数中使用它。