Is it possible to log a user in via the API rather than having the user enter all their details? For example, if an account exists with a user, log them in?
If you don't want users to always remember and fill out the passwords, you can opt for providing your users a passwordless method of login as well where they can login via one-time code that they will receive via email.
If that doesn't fit for your project, you can also provide them an option to signup / login via social auth like Google auth, where they can just click on their Google account that they have linked to your site and log in to the site. If they have not signed up via Google auth method, you can also provide them an option to link their google account to your site via profile forms.
Google auth is just one example, you can browse which social auth platform fits for your project in a better manner and set that up instead.
Comments
1 comment
Hey Josh Dean,
If you don't want users to always remember and fill out the passwords, you can opt for providing your users a passwordless method of login as well where they can login via one-time code that they will receive via email.
If that doesn't fit for your project, you can also provide them an option to signup / login via social auth like Google auth, where they can just click on their Google account that they have linked to your site and log in to the site. If they have not signed up via Google auth method, you can also provide them an option to link their google account to your site via profile forms.
Google auth is just one example, you can browse which social auth platform fits for your project in a better manner and set that up instead.
Hope this gives you some idea.
Please sign in to leave a comment.