Hi All
I'm trying to use this function to search for bugs online
def bug_search():
url = r"https://esearchapi.esri.com/search"
data = {
"num": 15,
"client": "support_all",
"start": 0,
"site": "support_bug_articles",
"format": "json",
"len": 100,
"lr": "en",
"index": "support_all",
"_source": {
"excludes": [
"content",
"meta",
"connectorSpecific"
]
},
"q": "",
"sort": "metaFields.date-sort:D",
"partialfields": "version:11%2E3"
}
response = requests.post(url=url, data=json.dumps(data))
1. It only returns 10 hits in the response
2. The response seems to be ignoring the offset value
3. There is a lot of non English language in the response even though "lr" = "en".
Can anyone point me in the right direction to properly query this api?