<?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: Pythong SDK - team_team_folder_list in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Pythong-SDK-team-team-folder-list/m-p/358935#M20455</link>
    <description>&lt;P&gt;The&amp;nbsp;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox.DropboxTeam.team_team_folder_list" target="_self"&gt;team_team_folder_list&lt;/A&gt; method is defined on the&amp;nbsp;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox.DropboxTeam" target="_self"&gt;DropboxTeam&lt;/A&gt; class, so you'll need to instantiate a&amp;nbsp;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox.DropboxTeam" target="_self"&gt;DropboxTeam&lt;/A&gt; and call it on that (instead of just &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox.Dropbox" target="_self"&gt;Dropbox&lt;/A&gt;). That is, that first line should look like this instead:&lt;/P&gt;
&lt;PRE&gt;dbx = dropbox.DropboxTeam(access_token)&lt;/PRE&gt;
&lt;P&gt;Also, note that the &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox.DropboxTeam.team_team_folder_list" target="_self"&gt;team_team_folder_list&lt;/A&gt; does not take a 'path' parameter. You can find more information on using it in &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox.DropboxTeam.team_team_folder_list" target="_self"&gt;the documentation&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also&amp;nbsp;recommend reading the &lt;A href="https://www.dropbox.com/developers/reference/namespace-guide" target="_self"&gt;Namespace Guide&lt;/A&gt; and &lt;A href="https://www.dropbox.com/developers/reference/content-access-guide" target="_self"&gt;Content Access Guide&lt;/A&gt; for information on how to access various parts of a&amp;nbsp;Dropbox Business team's content.&lt;/P&gt;</description>
    <pubDate>Tue, 06 Aug 2019 14:21:52 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2019-08-06T14:21:52Z</dc:date>
    <item>
      <title>Pythong SDK - team_team_folder_list</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Pythong-SDK-team-team-folder-list/m-p/358922#M20453</link>
      <description>&lt;P&gt;Hi I'm having trouble attempting to use the python SDK&lt;/P&gt;&lt;P&gt;I'm trying to access a list of team folders using 'team_team_folder_list'&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;PRE&gt;dbx = dropbox.Dropbox(access_token)
result = dbx.team_team_folder_list(path="")&lt;/PRE&gt;&lt;P&gt;Gives the error:&lt;/P&gt;&lt;PRE&gt;Traceback (most recent call last):
  File "dropbox-test.py", line 116, in &amp;lt;module&amp;gt;
    result = dbx.team_team_folder_list(path="")
AttributeError: 'Dropbox' object has no attribute 'team_team_folder_list'&lt;/PRE&gt;&lt;P&gt;I've tried a few variants of the above - and can see the function defined in the SDK - am I supposed to be calling it in a different way?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2019 12:53:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Pythong-SDK-team-team-folder-list/m-p/358922#M20453</guid>
      <dc:creator>craggleb</dc:creator>
      <dc:date>2019-08-06T12:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Pythong SDK - team_team_folder_list</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Pythong-SDK-team-team-folder-list/m-p/358935#M20455</link>
      <description>&lt;P&gt;The&amp;nbsp;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox.DropboxTeam.team_team_folder_list" target="_self"&gt;team_team_folder_list&lt;/A&gt; method is defined on the&amp;nbsp;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox.DropboxTeam" target="_self"&gt;DropboxTeam&lt;/A&gt; class, so you'll need to instantiate a&amp;nbsp;&lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox.DropboxTeam" target="_self"&gt;DropboxTeam&lt;/A&gt; and call it on that (instead of just &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox.Dropbox" target="_self"&gt;Dropbox&lt;/A&gt;). That is, that first line should look like this instead:&lt;/P&gt;
&lt;PRE&gt;dbx = dropbox.DropboxTeam(access_token)&lt;/PRE&gt;
&lt;P&gt;Also, note that the &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox.DropboxTeam.team_team_folder_list" target="_self"&gt;team_team_folder_list&lt;/A&gt; does not take a 'path' parameter. You can find more information on using it in &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox.DropboxTeam.team_team_folder_list" target="_self"&gt;the documentation&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also&amp;nbsp;recommend reading the &lt;A href="https://www.dropbox.com/developers/reference/namespace-guide" target="_self"&gt;Namespace Guide&lt;/A&gt; and &lt;A href="https://www.dropbox.com/developers/reference/content-access-guide" target="_self"&gt;Content Access Guide&lt;/A&gt; for information on how to access various parts of a&amp;nbsp;Dropbox Business team's content.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2019 14:21:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Pythong-SDK-team-team-folder-list/m-p/358935#M20455</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-08-06T14:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: Pythong SDK - team_team_folder_list</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Pythong-SDK-team-team-folder-list/m-p/359089#M20462</link>
      <description>&lt;P&gt;Thanks Greg that works perfectly!&lt;/P&gt;&lt;P&gt;I would never have gotten to invoking it with an access token from the documentation&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2019 12:41:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Pythong-SDK-team-team-folder-list/m-p/359089#M20462</guid>
      <dc:creator>craggleb</dc:creator>
      <dc:date>2019-08-07T12:41:47Z</dc:date>
    </item>
  </channel>
</rss>

