<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Shared data no download option in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744929#M36641</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reuben.&amp;nbsp; Sorry for the delay.&amp;nbsp; I'm definitely interested to hear how you solved this.&amp;nbsp; Odd that you can manually download the feature services but Python is not working - assuming that it's an AGOL issue and not Python (?).&amp;nbsp; If you want to post your script I'll take a peek.&amp;nbsp; If you solved it to I would be interested in the solution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Zach&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 20 Sep 2020 19:16:55 GMT</pubDate>
    <dc:creator>ZacharyUhlmann</dc:creator>
    <dc:date>2020-09-20T19:16:55Z</dc:date>
    <item>
      <title>Shared data no download option</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744924#M36636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am the owner of an ArcGIS Online organizational account.&amp;nbsp; Somebody shared a Feature Collection in a group within my organization that I intend to download.&amp;nbsp; The person is essentially transferring the data to me, at which point i can add it to my Content and share with the group.&amp;nbsp; There&amp;nbsp;is no option to download data directly on ArcGIS Online.&amp;nbsp;I think this is a simple ownership level issue.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;On the Feature Layer page the options are:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;View in&amp;nbsp;SceneViewer&amp;nbsp;or MapViewer or ArcGIS Desktop.&amp;nbsp; &lt;EM&gt;&lt;STRONG&gt;When I upload data&lt;/STRONG&gt;&lt;/EM&gt; to the group &lt;EM&gt;&lt;STRONG&gt;there is a download or save data option&lt;/STRONG&gt;&lt;/EM&gt;.&amp;nbsp; In this case in the Overview tab --&amp;gt; Sharing Level is set to 'Owner' of whom I am not.&amp;nbsp; It is owned by the guy who shared it.&amp;nbsp; How do I download this data?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI I endeavored on this journey using ArcGIS package to get my&amp;nbsp; scripting reportoire operational.&amp;nbsp; Here is code&amp;nbsp;&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;my_org_gis &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; GIS&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;username &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'my_username'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; password &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'sssshh, secret'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# 5 is the feature id in my content&lt;/SPAN&gt;
feature_collection &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; my_org_gis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;content&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;get&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;5&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
fp_download &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'path/to/download'&lt;/SPAN&gt;
gdb_name &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'eagle.gdb'&lt;/SPAN&gt;
result &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; feature_collection&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;export&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;gdb_name&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'File Geodatabase'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;```&lt;/P&gt;&lt;P&gt;And the meat of the error message:&lt;/P&gt;&lt;P&gt;---&amp;gt;&lt;STRONG&gt;&lt;EM&gt; RuntimeError: You do not have permissions to access this resource or perform this operation.&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;EM&gt;(Error Code: 403)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:42:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744924#M36636</guid>
      <dc:creator>ZacharyUhlmann</dc:creator>
      <dc:date>2021-12-12T07:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Shared data no download option</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744925#M36637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Zach,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It sounds like the Sharing Level for that particular layer may not be set appropriately.&amp;nbsp; If you can contact the data owner you can request that they change the Sharing Level to Everyone.&amp;nbsp; At the URL below you can find some additional information about sharing privileges in ArcGIS Online.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://doc.arcgis.com/en/arcgis-online/share-maps/share-items.htm" title="https://doc.arcgis.com/en/arcgis-online/share-maps/share-items.htm"&gt;Share items—ArcGIS Online Help | Documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;Lukas&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2020 22:02:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744925#M36637</guid>
      <dc:creator>LukasFalk</dc:creator>
      <dc:date>2020-07-20T22:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: Shared data no download option</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744926#M36638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Lucas (not the first time you've solved my queries!). Marking this as the tentative solution.&amp;nbsp; Pretty sure that's my problem.&amp;nbsp; I'll update if I learn otherwise.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2020 23:05:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744926#M36638</guid>
      <dc:creator>ZacharyUhlmann</dc:creator>
      <dc:date>2020-07-20T23:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: Shared data no download option</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744927#M36639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;UPDATE: It was indeed a Permissions issue, but a little more nuanced.&amp;nbsp; The gdb the guy was sharing needed to set Permissions to Organization AND share to my group: KRRP_Geospatial.&amp;nbsp; I think just the Organization was not sufficient for my purposes and Edit Group Sharing was necessary.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Here are the screenshottted instructions:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="502549" alt="" class="jive-emoji jive-image image-3 j-img-original" src="https://community.esri.com/legacyfs/online/502549_group_sharing1.JPG" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="502548" alt="" class="jive-emoji jive-image image-2 j-img-original" src="https://community.esri.com/legacyfs/online/502548_group_sharing2.JPG" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2020 21:59:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744927#M36639</guid>
      <dc:creator>ZacharyUhlmann</dc:creator>
      <dc:date>2020-08-05T21:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Shared data no download option</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744928#M36640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm having a similar problem. I want to export and download the feature services in a shared group. The python script won't allow me to export any of the features that I am not the owner of. Although, I can do this manually, one by one, in AGOL. The features are all set to allow downloads ('Extract'). I am the owner of the group, but i am not an administrator. Do i need administrative rights?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2020 01:21:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744928#M36640</guid>
      <dc:creator>ReubenWolff</dc:creator>
      <dc:date>2020-09-09T01:21:04Z</dc:date>
    </item>
    <item>
      <title>Re: Shared data no download option</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744929#M36641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reuben.&amp;nbsp; Sorry for the delay.&amp;nbsp; I'm definitely interested to hear how you solved this.&amp;nbsp; Odd that you can manually download the feature services but Python is not working - assuming that it's an AGOL issue and not Python (?).&amp;nbsp; If you want to post your script I'll take a peek.&amp;nbsp; If you solved it to I would be interested in the solution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Zach&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Sep 2020 19:16:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744929#M36641</guid>
      <dc:creator>ZacharyUhlmann</dc:creator>
      <dc:date>2020-09-20T19:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: Shared data no download option</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744930#M36642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Zachary,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I followed up this issue with Esri Premium Support, and after investigating, they determined that the issue was related to limitations of the Export Item module in ArcGIS Rest API. The Export Item API:&lt;/P&gt;&lt;P&gt;“Exports a service item (POST only) to the specified output format. Available only to users with an organizational subscription. Invokable only by the service item owner or an administrator.”&lt;/P&gt;&lt;P&gt;I was told this may be to prevent data scraping. They put in a request to address this issue with the development team.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I have a couple of options.&lt;/P&gt;&lt;P&gt;Option 1 is an alternative code that iterates through the Group content, finds the Feature Services, creates a local fgdb and copies each layer (Feature Class to Feature Class) and table (Table to Table) into the fgdb. It then determines if there are any relationships using the layer or tables properties.relationships.&lt;/P&gt;&lt;P&gt;If a relationship exists, it attempts to re-create the relationship class. It’s a little tricky, but works most of the time. This code works on content that is shared with me but that I don’t own, and seems to work even if the settings are not set to allow others to download.&lt;/P&gt;&lt;P&gt;Option 2 is to use the original code, but have the owners take the responsibility of backing up their own content.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will probably use a combination of both, depending on the situation. If the API is updated, I will go back to the original code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reuben&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2020 18:17:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744930#M36642</guid>
      <dc:creator>ReubenWolff</dc:creator>
      <dc:date>2020-09-22T18:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: Shared data no download option</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744931#M36643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reuben,&lt;/P&gt;&lt;P&gt;Sounds like a necessary workaround but frustrating.&amp;nbsp; I would be curious what your code looks like if you don't mind posting a sample.&amp;nbsp; I am fervently hacking away at Python ArcGIS API to some success with basic functions.&amp;nbsp; However I am 90% certain I encountered a bug that seems consistent with other wierd behavior I've noticed.&amp;nbsp; This from the GIS module, specifically content.search.&amp;nbsp; I hate how running the same search returns items in random orders each time.&amp;nbsp; Now my task was to first upload shapfiles, then publish.&amp;nbsp; In that process I uploaded shapfiles and published chunks at a time based off of tags. Anyways, I am going to put that post up in the form of a question prob over the weekend and I'll throw a link up here to see what you think.&amp;nbsp; I need to read more background but is the Python API Open Source?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the response and the breakdown of the interesting workflow,&lt;/P&gt;&lt;P&gt;Zach&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2020 04:21:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/shared-data-no-download-option/m-p/744931#M36643</guid>
      <dc:creator>ZacharyUhlmann</dc:creator>
      <dc:date>2020-09-24T04:21:53Z</dc:date>
    </item>
  </channel>
</rss>

