Hello,
I'm currently migrating one of my iOS app to the V2 of the API.
When a user authorize my app to use its Dropbox account I want to retrieve the OAuth2 token to share it with my server to allow long running backgroud processes.
This worked fine with the V1 of the API and still works fine in V2 when the authorization is made from a browser or a web view as the token is in the url returned by the SDK.
However, when the auth is done by the Dropbox iOS app, the url returned in to the
-application: openURL: options:
method is different and provides an oauth_token_secret parameter but no access_token.
How can I get the oauth2 token from the SDK knowing that the DBOAuthResult returns the same oauth_token_secret for its accessToken property in this case ? and not a valid oauth2 token.
Alternatively, is it possible to forbid the auth flow to use the installed Dropbox iOS app ?
Thanks !