Hi,I have some question about creating story map from coding using python.
This is my code
from arcgis.gis import GIS
portal_url = "https://your-organization/portal"
gis = GIS(url=portal_url, username="YourName", password="YourPassword")
storymap_item = gis.content.add({"type": "StoryMap",'title': 'My Test Python Story2'
} , owner = "YourName")
storymap_item.share(everyone=False)
storymap_url = storymap_item.homepage
print(f"StoryMap URL: {storymap_url}")
Does anyone has solution for creating Story map from python or have docs for help?
Appreciate all answers, btw sorry for my bad english.
Solved! Go to Solution.
Thank you for the answer. I already fix it by using arcgis.apps.storymap import StoryMap.
Hey @Tbones
Is there any difference if you change the sharing level to everyone or org?
storymap_item.share(everyone=True, org=True)
Cody
Thank you for the answer. I already fix it by using arcgis.apps.storymap import StoryMap.