Start 2025 on time and up to date. Seamlessly integrate your calendars into Dropbox with these simple steps.
Forum Discussion
Steve L.
8 years agoHelpful | Level 6
V2 web authentication - option to create an account?
In the V1 API, when using web authentication from iOS, there was an option at the bottom of the screen "New to Dropbox? Create an Account". In the V2 web authentication this has changed to "New to Dropbox? Get the App!" which redirects to the App Store.
This is problematic in that it adds complexity for a new (and possibly unsophisticated) user. Not only does this take them away from the calling app, they need to install the Dropbox app, open it, then create a Dropbox account then re-open the original app.
Contrast this with the V1 approach where the original app can authenticate in a web view, thus allowing the user to create an account and continue the authorisation process without ever leaving the app. This provides a much better onboarding experience for inexperienced users.
Is there a way to get this behavior in V2 ?
Many thanks
Steve
The account creation option was actually removed in favor of the app link in order to comply with Apple's App Store policies, unfortunately. For reference though, this behavior is controlled via the 'disable_signup' parameter on the /authorize page. It defaults to 'false', but is set to 'true' in the iOS SDKs in particular in order to prevent apps from being rejected from the App Store.
If you're using the official API v2 Objective-C SDK though, you can technically change this by doing:
[DBOAuthManager sharedOAuthManager].disableSignup = false;
- Greg-DBDropbox Staff
The account creation option was actually removed in favor of the app link in order to comply with Apple's App Store policies, unfortunately. For reference though, this behavior is controlled via the 'disable_signup' parameter on the /authorize page. It defaults to 'false', but is set to 'true' in the iOS SDKs in particular in order to prevent apps from being rejected from the App Store.
If you're using the official API v2 Objective-C SDK though, you can technically change this by doing:
[DBOAuthManager sharedOAuthManager].disableSignup = false;
- Steve L.Helpful | Level 6
Thanks Greg, much appreciated. We haven't had an App Store rejection to date, hopefully that will continue.
Again, thanks. I appreciate the quick response.
Steve
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,926 PostsLatest Activity: 3 days ago
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 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!