Hi all,
I am new to dropbox api. My problem is whenver I try to create an app folder from the app console, the connection never works and I keep receiving an error regarding to the path, see below:
ApiError: ApiError('187007dde9fb433ea831afd60b273b83', CreateSharedLinkWithSettingsError('path', LookupError('not_found', None)))
I am fully aware that app folder can only access the files inside the the folder of the main app. Hence, I embedded the file I want to access inside the app folder in dropbox . I am using the following code:
import dropbox
dbx = dropbox.Dropbox(<app token>)
shared_link_metadata = dbx.sharing_create_shared_link_with_settings("/Apps/App_Name/example.xlsx")
print (shared_link_metadata.url)
Any ideas on how to overcome this issue?
Your help is much appreciated,
Thanks