Hi,
I have a script that downloads data from an ArcGIS item, then loads it into our central database for reporting purposes. It used to work, but early last year it stopped working for some reason. Now when I try to get the data from a gis item it returns {}, even though I know there is data.
Basically this is what the start of the code looks like:
from arcgis.gis import GIS
gis = GIS(username='****', password='****')
item = gis.content.get('426435c937df4661b32b617e4705d003')
item_data = item.get_data()
This isn't actually the item I am trying to get the data from, but this is publicly facing, and I know there are over 1200 records in it so I thought it might work for testing. I have tried multiple items and get the same result for all of them.
Any advice on how to fix this?