cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements
Share your feedback on the Document Scanning Experience in the Dropbox App right here.

Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Re: V2 web authentication - option to create an account?

V2 web authentication - option to create an account?

Steve L.
Helpful | Level 6
Go to solution

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

1 Accepted Solution

Accepted Solutions

Greg-DB
Dropbox Staff
Go to solution

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;

 

 

 

View solution in original post

2 Replies 2

Greg-DB
Dropbox Staff
Go to solution

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
Go to solution

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

Need more support?