I'm beginning to use Python to work around ArcGIS Online. Does anyone know how to get all items in a folder in ArcGIS Online with Python code?
I tried these ones but not work:
items = gis_online.content.search(query=f"folderid:{source_folder_id}")
items = gis_online.content.get(source_folder_id)
Thanks!
This will return user items which can then get the item.id or item.title etc.