Does anyone know about a SaaS billing and authentication service?

I have a SaaS launch that has a windows based client interface. It is based on the freemium model, and I want to take responsibility for registering, authenticating and billing customers. Any third party services out there doing?

I know billing services, but not those that also register and allow user authentication.

Updated: Basically, I want users to download the application, enter their email address and get the user / application ID. Then they can add services to this account. The application must authenticate and verify user rights. I want some services to take care of this whole process.

thank

+3
source share
1 answer

I do not know a single billing application that can handle this. These are two different monsters. You must use some kind of auth structure in conjunction with a billing application. Ours is called CheddarGetter.com.

What you probably need for a third-party part of this project is a basic member database with some kind of access control to increase the security of your application. The most common way to do this is through a combination of user and password security and session management. IP shielding is also possible, but usually not pragmatic.

There are many frameworks that include some user / author kindness. I'm not sure about .net, but here are a few other options:

: https://github.com/RailsApps/rails3-mongoid-omniauth https://github.com/plataformatec/devise

PHP: http://framework.zend.com/

+1

Source: https://habr.com/ru/post/1795800/


All Articles