Hello 🙂
I'm working on a React Native app which supports backing up files to Dropbox.
I'm using the react-native-app-auth library to authorize my app for access to DB and it all works fine and I get the token, but the authentication form opens up in the browser via http.
I've tried using the Linking class from react-native to call Linking.openURL("dbapi-2://1/connect"), but that just opens up the Dropbox app and nothing more.
Is there a way to invoke the installed Dropbox mobile app to authorize an app/user?
Thanks!