Below is the code I'm executing for post request and getting this error
JSONDecodeError("Expecting value", s, err.value) from None json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) error
import requests,json
request_data = {"files": ["\\r\\tabs\\lg\\supp\\p\\tabrvstring\\TStringManager.h @ 118",
"\\qt\\VION\\localbase\\base\\kernel\\qobject.cpp @ 1418"]}
response = requests.post('http://autobot/_search/api/v1.0/',
headers = {'Content-Type':'application/json'},data = json.dumps(request_data))
print("Status code: ", response.status_code)
print("Printing Entire Post Request")
print(response.json())