We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
Joe_AR
7 months agoHelpful | Level 5
API folder creation
I'm using Google Colab + Python to create a list of folder from a googleSheet of my open projects. I set-up the App in dropbox & the code runs without error. It checks to see if the folder path alr...
- 7 months ago
Hey Zdravko,
Just reran it this AM and its working. I started with the documenation and added a missing parameter. The folders were visible when I logged in under the 'suggested folders'. I did notice - to your point - that I was creating the folders in the wrong path.
The absolute path I was creating was wrong:# Define the parent folder pathparent_folder_path = 'home/(my user name)/000 - Shipping Photos/' # Absolute path to the parent folderShould have just been:
# Define the parent folder pathparent_folder_path = '/000 - Shipping Photos/' # Absolute path to the parent folderWent I went to navagate to the folder upon successful creation of the folders - I noted the nested path was duplicated:
/home/(user name)/000 -Shipping Photos/home/(user name)/000 - Shipping Photos/
Stupid error on top of stupid error. Splinter removed from my mind. Thank you for the feedback & help.
Здравко
7 months agoLegendary | Level 20
Hi Joe_AR,
There are many different things that could get wrong that may lead you to such a state. It's difficult to point one (impossible actually). Typical mistakes are:
- wrong account authenticated - you're putting files/folders in one account (authorized your application by mistake) and expect the same files/folders on other account. Check the actual account your application has linked to.
- app folder application type - registered application type suppose limited access to associated account and all files/folders are put in the corresponding application's subfolder (not in account root), where you're looking on. Check is your application type limited to app folder in app settings.
- team account put everything in members folder, by default - your business account assume you want to put something in your private space. Check there, not in the account root.
Of course there might be many others, but the above are most typical confusion cases and that's why you can start from them. 😉
Hope this helps.
- Joe_AR7 months agoHelpful | Level 5
Hey Zdravko,
Just reran it this AM and its working. I started with the documenation and added a missing parameter. The folders were visible when I logged in under the 'suggested folders'. I did notice - to your point - that I was creating the folders in the wrong path.
The absolute path I was creating was wrong:# Define the parent folder pathparent_folder_path = 'home/(my user name)/000 - Shipping Photos/' # Absolute path to the parent folderShould have just been:
# Define the parent folder pathparent_folder_path = '/000 - Shipping Photos/' # Absolute path to the parent folderWent I went to navagate to the folder upon successful creation of the folders - I noted the nested path was duplicated:
/home/(user name)/000 -Shipping Photos/home/(user name)/000 - Shipping Photos/
Stupid error on top of stupid error. Splinter removed from my mind. Thank you for the feedback & help.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 5 hours agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!