watanabeyu / react-native-simple-twitter

Twitter API client for react native without react-native link and react custom hook
MIT License
87 stars 45 forks source link

Specify which twitter callback url #34

Open BiskremMuhammad opened 4 years ago

BiskremMuhammad commented 4 years ago

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.

UdaySubbisetty commented 4 years ago

@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} />