Trying to connect powerapps to 3rd party REST service, this service requires an authentication token. I can do this easy enough with requests and python, but someone wants to do it in powerapps.
I need to pass this token from powerapps to the REST service something like this:
Python
headers = {"content-type": "application/json", "Authorization": "Xy454uu99blahblah"}
result_get = requests.get(url, headers=headers)
anyway to do this? I don't know a whole lot about powerapps?
Python
headers = {"content-type": "application/json", "Authorization": "Xy454uu99blahblah"}
result_get = requests.get(url, headers=headers)