gpt4 book ai didi

python-3.x - 使用 python 访问 Azure webhook 数据

转载 作者:行者123 更新时间:2023-12-03 02:17:04 24 4
gpt4 key购买 nike

如何使用 Python 编程语言访问 Azure 自动化 Webhooks 中的 WebhookData 对象。我读了documentation关于这一点,但它是在 PowerShell 中,对我的实例没有帮助。我的 Azure Webhook URL 端点已成功从自定义外部应用程序接收数据。我想读取接收到的数据并运行由接收到的数据驱动的逻辑。如下图所示,我正在Azure中接收数据。

WEBHOOKDATA coming into the Azure

这是我尝试访问 WEBHOOKDATA 输入参数时收到的错误消息:

Traceback (most recent call last): File "C:\Temp\rh0xijl1.ayb\3b9ba51c-73e7-44ba-af36-3c910e659c71", line 7, in <module> received_data = WEBHOOKDATA NameError: name 'WEBHOOKDATA' is not defined

这是生成错误消息的代码:

#!/usr/bin/env python3
import json

# Here is where my question is. How do I get this in Python?
# Surely, I should be able to access this easily. But how.
# Powershell does have a concept of param in the documentation - but I want to do this in Python.
received_data = WEBHOOKDATA
#convert JSON to string
received_as_text = json.dumps(received_data)
print(received_as_text)

最佳答案

您可以使用 sys.argv 访问 Runbook 输入参数。请参阅Tutorial: Create a Python 3 runbook

关于python-3.x - 使用 python 访问 Azure webhook 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70734859/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com