Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
gcarl
5 years agoExplorer | Level 4
iOS - Problems connecting from own app to Dropbox when Dropbox App is installed
Dear community,
since a few days I have the following strange situation.
I have developed an app for iOS which can store data on the Dropbox. The connection is set up as described in the ...
Greg-DB
Dropbox Community Moderator
5 years agogcarl Thanks for confirming that. Unfortunately it's not clear why that would be failing, but this issue looks similar to this report. Are you able to reproduce the same properties they mentioned though, such as differences across devices, and being able to work around the issue by waiting?
gcarl
5 years agoExplorer | Level 4
Dear GrebDB,
I did various tests on several devices with the same effect.
But finality I think, I found a solution.
Although specified in the app declaration on Dropbox, that the app needs scopes "files.content.write" and "files.content.read" too, it didn't work
Hence I changed the scope request when initially calling the Dropbox to get access and included all scopes:
"
let scopeRequest = ScopeRequest(scopeType: .user, scopes: ["files.content.write", "files.content.read", "account_info.read"], includeGrantedScopes: false)
DropboxClientsManager.authorizeFromControllerV2(
UIApplication.shared,
controller: self,
loadingStatusDelegate: nil,
openURL: { (url: URL) -> Void in UIApplication.shared.open(url, options: [:], completionHandler: nil) },
scopeRequest: scopeRequest
)
"
By doing so, it seems that the problem is fixed.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If 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, Facebook or Instagram.
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!