Social Login (facebook,google)

Can any one suggest me that how can i login in facebook and google using auth0 ios sdk for native application? i have used A0FacebookAuthenticator but it gives me /access_token url not found.

Hey there @jaiminr.hyperlinkinf!

Sure, it’s fairly easy provided that you follow our quickstarts. You can find them here:

Hey @konrad.sopala Thanks for your reply.
I have fully customise login screen so i can not use lock UI. I have Facebook button in this screen. So on tapping on this button i would like to login user in application using auth0 just like we do in other application. Also i can not use web authentication too. I have used func loginSocial(token: String, connection: String, scope: String, parameters: [String: Any ]) → Request<Credentials, AuthenticationError> this method but does not work as it is require Legacy grant for /access_token. So is there any other solution.?

Hey there @jaiminr.hyperlinkinf!

If you have built a custom UI yourself, in order to implement social login you need to make use of our Authentication API endpoints:

https://auth0.com/docs/api/authentication#social

Hey there!

Did you see my previous message?