【发布时间】:2019-12-10 11:07:49
【问题描述】:
尝试将 powerapps 连接到 3rd 方 REST 服务,此服务需要身份验证令牌。我可以使用 requests 和 python 轻松做到这一点,但有人想在 powerapps 中做到这一点。
我需要将此令牌从 powerapps 传递给 REST 服务,如下所示:
Python
headers = {"content-type": "application/json", "Authorization": "Xy454uu99blahblah"}
result_get = requests.get(url, headers=headers)
无论如何要这样做?我对 powerapps 不太了解?
Python
headers = {"content-type": "application/json", "Authorization": "Xy454uu99blahblah"}
result_get = requests.get(url, headers=headers)
【问题讨论】:
标签: powerapps