react-native-linkedin-login
                                
                                 react-native-linkedin-login copied to clipboard
                                
                                    react-native-linkedin-login copied to clipboard
                            
                            
                            
                        Not receiving any respponse?
I am using react-native-linkedin-login. All I have done but not receiving any response from app. Any ideas?
Same here, not getting any response from app in successBlock
@ankitbisht143 @ayushnawani Sorry for the delay will look into this soon
This still has the issue
Same in iOS. After coming back from the native app, the login() promises doesn't resolves.
@ayushnawani @Airomad I got it working by adding this code to AppDelegate.m:
- (BOOL)application:(UIApplication *)application
            openURL:(NSURL *)url
            options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
  
  if ([RCTLinkedinLogin shouldHandleUrl:url])
  {
    return [RCTLinkedinLogin application:application openURL:url sourceApplication:options[UIApplicationOpenURLOptionsSourceApplicationKey] annotation:options[UIApplicationOpenURLOptionsAnnotationKey]];
  }
...
same here, I can't get any data from the app
any update on this issue?