Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,929 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
from one of azure funciton im calling other azure function through python requests module , the response is type of responsestack not able to convert this into json or dic
response = requests.request("post", url, json = myobj ,headers=headers)
#data = response.json() this has been removed to resolve json decode error also response coming in json
data = json.loads(response.text)
this code is not working