Is there any way to login with Facebook and get information by OAuth using ReactJS? I did it with JavaScript SDK, but haven't found any ways yet with React
1 Answer
I've also been searching for methods to do this properly. The only react component available is react-facebook-login and it doesn't play well with isomorphic applications.
So, because the isomorphic apps have different ways of rendering on the server side, I found that the only way available at present is to do it manually, to fit it in the application.
For client-only application, you can inspire from this other thread.
react-native-facebook-loginorreact-facebook-loginon NPM.