User authentication service for desktop applications?

0

I'm developing a desktop application in delphi, but I do not want to build the part that controls user access because I do not really know this part and time limit. I would like to use an online service for such a task. Does anyone know a service like this?

    
asked by anonymous 09.08.2017 / 03:46

1 answer

1

There are paid services like Stormpath ( link ) or you can use oauth2 to do the so-called "social login" where users can use the accounts of their social networks like Facebook, twitter besides github, Google.

Take a careful look at this need before implementing it as it may be more laborious than creating your own. If it's just for user authentication then oauth2 might be interesting, but if you add it you need to control access to the system modules, permissions and etc. it will not help you.

    
09.08.2017 / 11:29