<?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: too many requests to add members in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/too-many-requests-to-add-members/m-p/627161#M29012</link>
    <description>&lt;P&gt;Yes, I refer to sharing_add_folder_member. I use it as follows.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;member_selector = dropbox.sharing.MemberSelector.email(&amp;lt;email_address&amp;gt;)
add_member =  dropbox.sharing.AddMember(member_selector,dropbox.sharing.AccessLevel.viewer)
members = [add_member]
dbx.sharing_add_folder_member(&amp;lt;shared_folder_id&amp;gt;, members)&lt;/LI-CODE&gt;&lt;P&gt;Previously, it worked fine, but now the script runs endlessly. It doesn't return any error. Am I doing something wrong that doesn't return an error?&lt;BR /&gt;From the dropbox interface in the browser, it returns the error "Folder updates in progress. Please try again later."&lt;/P&gt;&lt;P&gt;Maybe there are some pending invites or I have been banned. But how can I check it?&lt;/P&gt;</description>
    <pubDate>Tue, 04 Oct 2022 23:03:46 GMT</pubDate>
    <dc:creator>karolo4206</dc:creator>
    <dc:date>2022-10-04T23:03:46Z</dc:date>
    <item>
      <title>too many requests to add members</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/too-many-requests-to-add-members/m-p/626846#M28988</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I tried to use python to add a member to a folder. Everything worked fine at first, but unfortunately I misused the tool. Because instead of using a separate method for sending email messages, I added the same member every hour so that an email would be sent using add member and the custom message option. Now I have set up gmail to send emails, but I need to add a member once in a while. At first I have to add a few members and then maybe one per month. But unfortunately I can't add any anymore, when I try to do it from the browser level, I get the message "Folder updates in progress. Please try again later." I think I have done too many add operations and have it blocked now. Do you know if I will be able to add members again in some time. What should I do to unlock this feature?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 08:51:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/too-many-requests-to-add-members/m-p/626846#M28988</guid>
      <dc:creator>karolo4206</dc:creator>
      <dc:date>2022-10-04T08:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: too many requests to add members</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/too-many-requests-to-add-members/m-p/626976#M28995</link>
      <description>&lt;P&gt;If you're referring to using &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.sharing_add_folder_member" target="_blank"&gt;sharing_add_folder_member&lt;/A&gt; to add a member to a shared folder, there is &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/sharing.html#dropbox.sharing.AddFolderMemberError" target="_blank"&gt;a AddFolderMemberError.rate_limit that applies per 24 hours&lt;/A&gt;. Please wait 24 hours and try again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Otherwise, regarding any particular error you're seeing regarding files/folders on the Dropbox web site, please reach out to &lt;A href="https://www.dropbox.com/support" target="_blank"&gt;support&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 13:40:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/too-many-requests-to-add-members/m-p/626976#M28995</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-10-04T13:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: too many requests to add members</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/too-many-requests-to-add-members/m-p/627161#M29012</link>
      <description>&lt;P&gt;Yes, I refer to sharing_add_folder_member. I use it as follows.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;member_selector = dropbox.sharing.MemberSelector.email(&amp;lt;email_address&amp;gt;)
add_member =  dropbox.sharing.AddMember(member_selector,dropbox.sharing.AccessLevel.viewer)
members = [add_member]
dbx.sharing_add_folder_member(&amp;lt;shared_folder_id&amp;gt;, members)&lt;/LI-CODE&gt;&lt;P&gt;Previously, it worked fine, but now the script runs endlessly. It doesn't return any error. Am I doing something wrong that doesn't return an error?&lt;BR /&gt;From the dropbox interface in the browser, it returns the error "Folder updates in progress. Please try again later."&lt;/P&gt;&lt;P&gt;Maybe there are some pending invites or I have been banned. But how can I check it?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 23:03:46 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/too-many-requests-to-add-members/m-p/627161#M29012</guid>
      <dc:creator>karolo4206</dc:creator>
      <dc:date>2022-10-04T23:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: too many requests to add members</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/too-many-requests-to-add-members/m-p/627280#M29018</link>
      <description>&lt;P&gt;The sharing_add_folder_member method should either return a result, or raise an exception. I can't say based on this snippet what is happening with your code execution flow, so I recommend stepping through with a debugger to see where it is hanging or infinitely looping. Let me know if something is broken in the Dropbox API/SDK itself when you do so and we can investigate.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In any case, I can only help with the API itself, so for any questions or help regarding your account state itself, please contact &lt;A href="https://www.dropbox.com/support" target="_blank"&gt;support&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 14:01:39 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/too-many-requests-to-add-members/m-p/627280#M29018</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-10-05T14:01:39Z</dc:date>
    </item>
  </channel>
</rss>

