Start 2025 on time and up to date. Seamlessly integrate your calendars into Dropbox with these simple steps.

Forum Discussion

Steve L.'s avatar
Steve L.
Helpful | Level 6
8 years ago

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-DB's avatar
    Greg-DB
    Icon for Dropbox Staff rankDropbox 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.'s avatar
      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