react-native-simple-twitter icon indicating copy to clipboard operation
react-native-simple-twitter copied to clipboard

Specify which twitter callback url

Open BiskremMuhammad opened this issue 5 years ago • 1 comments

i can't find a module to specify which twitter callback url to use. as of my case i have another callback url in my twitter app dashboard to handle login in the browser.

BiskremMuhammad avatar Jul 28 '20 13:07 BiskremMuhammad

@BiskremMuhammad , i have resolved this issue like below. in react-native-simple-twitter ->Components -> Modal.tsx add webView like below.

<WebView originWhitelist={['*']} startInLoadingState={true} javaScriptEnabledAndroid={true} javaScriptEnabled={true} source={{ uri: props.authURL }} onNavigationStateChange={props.onWebViewStateChanged} />

UdaySubbisetty avatar Nov 19 '20 14:11 UdaySubbisetty