Debashis Adak
03/19/2024, 5:53 PM'<?xml version="1.0" ?><exception><message>Expecting path in the following format: /{serviceName}/{methodName}?{parameters}.</message></exception>'
In tap, on the below mentioned line I am receiving 200 response code.
r = requests.get(
self.config["api_url"] + path,
auth=self.http_auth,
params=params,
headers=headers,
)
But when logging r.text, it is showing the above error & r.json [records = extract_jsonpath(records_path, input=r.json()) ], it is giving below error. Can anyone please help on the same?
{JSONDecodeError}Expecting value: line 1 column 1 (char 0)
Edgar Ramírez (Arch.dev)
03/19/2024, 5:54 PMDebashis Adak
03/20/2024, 2:55 PM