Hi,
I am trying to produce a list of all layers that are in Esri webmap. I have the private url of the webmap and I found this Python code
from arcgis.gis import GIS
from arcgis.mapping import WebMap
gis = GIS('home')# if running this from Notebook for ArcGIS in AGOL/Enterprise, replace this line with gis = GIS('home')
wmItemId = "myid" #put the id of the webmap in here
wmItem = gis.content.get(wmItemId)
wm = WebMap(wmItem)
for lyr in wm.layers:
print(lyr.title)
print(lyr.url)
Could some please tell me how to use this code in FME?