How do I implement the auth0 api (not 'lock') with React?

Every example/tutorial I can find shows how to implement Auth0 using the ‘lock’ hosted popup interface. While using lock certainly makes creating a login page easier, I require more control over my login/signup forms than the popup provides. Trouble is, I can’t find any tutorials or documentation on implementing auth0 localdb and social (fb, twitter, etc.) login for React that doesn’t use ‘lock’

Can anyone point me in the right direction?

I absolute feel your pain! Our project required us not to use ‘Lock’ and we spent hours going through documentation to piece it all together. We finally came across these which steered us in the right direction to call Auth0 through our api proxy. Hope this helps.

https://auth0.com/docs/api/authentication#resource-owner-password
https://auth0.com/docs/api-auth/tutorials/password-grant

Thanks, that does help!

Thanks, that does help!