I have react-native app for mobile and web. I have Dropbox section that I need to connect with backend. On toggle button I need to show Dropbox modal to signIn.
<View style={{ paddingHorizontal: 15 }}>
<AccordionComponent label="DropBox" type="toggle" content={<></>} />
</View>
I've tried to use this but it's show me error and I think it's only for mobile https://docs.expo.dev/guides/authentication/#dropbox
Also I found this https://github.com/FormidableLabs/react-native-app-auth/blob/main/docs/config-examples/dropbox.md#note-about-client-secrets but don't know how to use it.
thank u