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

Gurram, Munisekhar 20 Reputation points
2023-07-12T09:54:46.07+00:00

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 
Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,929 questions
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.