Secure Login Process to Authenticate Users to your Applications
- No credit card required
- Forever free email support
- 5-minute integration
// The Login Button event Redirect to the IDX Login Page document.getElementById('login') .addEventListener("click", async ()=> { await LoginRadiusSDK.openLoginPage(); }, false); // The IDX Login callback window.addEventListener("load", async ()=> { await LoginRadiusSDK.appCallback(); // Getting the full user profile let profile = await LoginRadiusSDK.getUserProfile(); console.log(profile); // Getting the user token let token = await LoginRadiusSDK.getToken(); console.log(token); }, false); |
JAVA
// make sure LoginRadius instance exists String accessToken = "<accessToken>"; //Required String fields = null; //Optional AuthenticationApi authenticationApi = new AuthenticationApi(); authenticationApi.getProfileByAccessToken(accessToken, fields , new AsyncHandler<Identity> (){ @Override public void onFailure(ErrorResponse errorResponse) { System.out.println(errorResponse.getDescription()); } @Override public void onSuccess(Identity response) { System.out.println(response.getUid()); } }); |
PHP
<?php // make sure LoginRadius instance exists $access_token = “access token”; $authenticationAPI = new AuthenticationAPI(); $response = $authenticationAPI->getProfileByAccessToken($access_token); ?> |
IOS
// make sure LoginRadius instance exists let parameter:AnyObject = ["email":"email", "password":"password" ] as AnyObject AuthenticationAPI.authInstance().login(withPayload:parameter as? [AnyHashable : Any], loginurl:nil, emailtemplate:nil, smstemplate:nil, g_recaptcha_response:nil,completionHandler: { (data, error) in if let err = error { print("Error") } else { print("login successful") } }) |
NODEJS
// make sure LoginRadius instance exists var accessToken = “access token”; var fields = null; lr.authenticationApi.getProfileByAccessToken(accessToken, fields).then((response) => { console.log(response); }).catch((error) => { console.log(error); }); |
DOT NET
//make sure LoginRadius instance exists var accessToken = "accessToken"; //Required string fields = null; //Optional var apiResponse = new AuthenticationApi().GetProfileByAccessToken(accessToken, fields); |
ANDROID
// make sure LoginRadius instance exists QueryParams params = new QueryParams(); params.setEmail("Your Email ID"); params.setPassword("Your Password"); AuthenticationAPI api = new AuthenticationAPI(); api.login(getApplicationContext(), params, new AsyncHandler<LoginData>() { @Override public void onSuccess(LoginData logindata) { Log.e("User Profile", logindata.getProfile()); } @Override public void onFailure(Throwable error, String errorcode) { Log.e("error", error.getMessage()); } }); |
Don’t spend months on setting and maintaining an authentication system. Take off in 5 minutes with a few lines of code from LoginRadius. Customize and handle complexity as you go.
Select Your Number of Monthly Active UsersMonthly Active User (MAU) is a user who signs up, authenticates and/or uses an authentication token on the platform at least once in a calendar month. Once authenticated, the user can login unlimited number of times during that calendar month.
500
1K
2.5K
5K
10K
20K
50K
50K+
7,000 Monthly active users Monthly Active User (MAU) is a user who signs up, authenticates and/or uses an authentication token on the platform at least once in a calendar month. Once authenticated, the user can login unlimited number of times during that calendar month.
500 Monthly active users Monthly Active User (MAU) is a user who signs up, authenticates and/or uses an authentication token on the platform at least once in a calendar month. Once authenticated, the user can login unlimited number of times during that calendar month.
500 Monthly active users Monthly Active User (MAU) is a user who signs up, authenticates and/or uses an authentication token on the platform at least once in a calendar month. Once authenticated, the user can login unlimited number of times during that calendar month.
Free Signup No credit card required. No hidden fees.
Start Free 21-Day Trial No credit card required. No hidden fees.
Start Free 21-Day Trial No credit card required. No hidden fees.
Free Signup No credit card required. No hidden fees.
Start Free 21-Day Trial No credit card required. No hidden fees.
Start Free 21-Day Trial No credit card required. No hidden fees.
|
COLLAPSE ALL
|
Free | Developer | Developer Pro |
|---|
Authentication
| Standard Login User registration and login using unique ID (email address or username) and password. | ✓ | ✓ | ✓ |
| Phone Login User registration and login using a phone number (per SMS cost not included). | ✗ | ✗ | ✓ |
| Password-less via SMS User registration and login using an OTP sent to the phone number (per SMS cost not included). | ✗ | ✗ | ✓ |
| Password-less via Email User registration and login via a link sent to the registered email address. | ✗ | ✗ | ✓ |
| Social Login User registration and login using social accounts, including Facebook, LinkedIn, Twitter, and 35 more. | 3 Social Login Providers | 5 Social Login Providers | 20+ Social Login Providers |
| Email Template and Workflow Pre-defined email templates that are easy to customize for all applicable workflows in the langauage of your choice. | ✓ | ✓ | ✓ |
| SMS Template and Workflow Pre-defined SMS templates that are easy to customize for all applicable workflows in the langauage of your choice. | ✗ | ✗ | ✓ |
Identity Experience (IDx) Framework
| Hosted IDx Ready-to-use web pages available on a dedicated instance of LoginRadius, which has already set up registration, login, user profile, and forgot password processes. Multiple page templates are available making it easy to customize the UI and UX. | ✓ | ✓ | ✓ |
| Self-Hosted IDx Ready-to-use identity pages (registration, login, forgot password, and user profile) that you can customize using our build-in JavaScript template engine and host on your domain. | ✗ | ✓ | ✓ |
| Pre-designed Templates Multiple fully customizable templates for the Hosted Identity Experience Framework (IDX). | ✓ | ✓ | ✓ |
| Custom Logo and Branding Fully customizable layouts and branding enabling alignment with your branding guidelines and themes. | ✓ | ✓ | ✓ |
| Custom Messaging Full content control for all consumer facing content and messaging | ✗ | ✓ | ✓ |
Single Sign-on (SSO)
| Web and Mobile SSO Seamless authentication among multiple applications for your consumers. | ✗ | ✓ | ✓ |
| Account Linking Streamline consumer experience via account linking even if the customer uses various login providers for your application. | ✗ | ✓ | ✓ |
| Role Based Authorization Role and access permission management for individual consumers. | ✗ | ✗ | ✓ |
Directory Service
| Customer Data Storage Host your users’ data at the preferred geographic location with a cloud-based scalable, secure, and high-performance data repository. | Choice of 1 data center | Choice of 1 data center | Choice of 1 data center |
| Customer Profiling Better understand your application consumers with detailed consumer metadata such as demographic, age group, preferences, etc. | ✗ | ✓ | ✓ |
| Progressive Data Gathering Gradual data collection of your consumers as they interact with your brand. | ✗ | ✗ | ✓ |
Account Security
| Spam Prevention Access restriction on suspicious email domains to prevent spam registrations. | ✓ | ✓ | ✓ |
| Brute Force Lockout Protect consumers against brute force attacks by prompting either security questions, CAPTCHA or suspending/blocking an account. | ✗ | ✓ | ✓ |
| Password Policy Enhance security using password parameters such as expiration time, history, complexity, encryption, and more. | ✗ | ✓ | ✓ |
| Session Management Configure active session settings for your application. | ✓ | ✓ | ✓ |
| Global CAPTCHA Bot protection using Google ReCAPTCHA and/or QQ CAPTCHA. | ✓ | ✓ | ✓ |
Data and Identity Migration
| Mapping Data to LR Database Granular field mapping from your existing data set to LoginRadius Cloud Database. | ✗ | ✓ | ✓ |
| De-duplication Duplicate profile removal during data migration. | ✗ | ✓ | ✓ |
| Data Normalization Transforms data into the LoginRadius Normalized Consumer Profile Format. | ✗ | ✓ | ✓ |
| Data Sanitation Various actions ensuring the data migrated into your LoginRadius Cloud database follows best practices and is formatted correctly including: field-level preprocessing, required field verification, precedential data merging, data filtering and more. | ✗ | ✗ | ✓ |
| Password Reset Not Required Migrate existing hashed passwords to avoid reseting consumer passwords after the data migration is completed. | ✗ | ✗ | ✓ |
| Trigger Email Content Automatically trigger emails to your consumers during/after the data migration. | ✗ | ✗ | ✓ |
| Enforce Password Reset Enforce consumers to reset their account passwords on first login or based on defined criteria | ✗ | ✗ | ✓ |
| Multiple Hash Supported Multiple hashing algorithms supported for migration including PBKDF2, SHA, MD5, etc. | ✗ | ✗ | ✓ |
| Multiple Data Source Migrate from multiple data sources simultaneoulsy. | ✗ | ✗ | ✓ |
| Migration from other CIAM Platform Standardized process to migrate from other industry CIAM providers. | ✗ | ✗ | ✓ |
| CSV Based Migration Migrate your data using the CSV files. | ✗ | ✗ | ✓ |
| Self-serve Migration Self-serve data migration using LoginRadius Admin Console. | ✗ | ✓ | ✓ |
Cloud Hosting
| Regional Data Hosting Data is hosted in your selected location. Refer to Product Add-On section for more details on the regional database. | ✓ | ✓ | ✓ |
| Data Back-up Service Incremental and full data backups. | ✓ | ✓ | ✓ |
| Disaster Recovery Service Support disaster recovery of data. | ✗ | ✓ | ✓ |
Data Security
| Crypto Hashing Support industry recommended hashing algorithms to protect sensitive information. | ✓ | ✓ | ✓ |
| Encryption in Transit All information is encrypted while in transit. | ✓ | ✓ | ✓ |
| Encryption at Rest All information is encrypted at rest in the database. | ✗ | ✗ | ✓ |
System Performance
| Uptime SLA Our service contract guarantees system availability of 99.99% uptime on a monthly basis. | ✗ | ✗ | 99.99% Monthly Availability |
Privacy
| GDPR & CCPA Provide GDPR and CCPA compliance tools and resources. | ✗ | ✓ | ✓ |
| Age Verification (Restriction) Verify the consumers age during registration or authentication. | ✗ | ✓ | ✓ |
Compliances
| LR Compliances We are SOC2, ISO27001, ISO 27001:2013, ISO 27017, 27018, NIST CSF, CSA Star, Privacy Shield, and ISAE 3000-certified. | ✗ | ✗ | ISO 27001 |
| Cloud Compliances We are ISO 27017, 27018, CSA Star, and Privacy Shield cloud certified. | ✗ | ✗ | ✓ |
Customer Data Gathering
| Registration Data Collect first-party data through your registration form. | ✓ | ✓ | ✓ |
| Social Data Collect first-party data through social networks with consent from consumers. | Basic | Extended | ✓ |
Technical Support
| Email Support Email support from LoginRadius engineers. | ✗ | ✓ | ✓ |
| Support SLA SLA with guarenteed response times based on priority classification. | ✗ | ✗ | Add-on |
Professional Services
| Dedicated Account Manager Dedicated Account Manager appointed to ensure the success during your implementation and ongoing usage of the LoginRadius CIAM platform. | ✗ | ✗ | ✓ |
| Onboarding (Account set, training, implementation support) A Dedicated team to support your initial LoginRadius deployment. Facilitates account setup, Training of your team and ongoing coordination to ensure a quick seamless deployment of the LoginRadius CIAM platform. | ✗ | Self-serve | Basic |
| User Migration Migrate your existing consumers to LoginRadius using our user migration software. | ✗ | Self-serve | Add-on |
Team Management
| Roles and Permissions Granular access level management for your internal team members | ✗ | ✗ | ✓ |
| SSO with Internal IAM Enable SSO with your employee IAM to give them access to the LoginRadius Admin Console. | ✗ | ✗ | ✓ |
| Employee Audit Trail Additional security layer to track how your employees are interacting with the LoginRadius Admin Console | ✗ | ✗ | 30 Days |
Platform
| Mobile SDKs Mobile SDKs for all industry leading mobile technologies. | ✓ | ✓ | ✓ |
| Web SDKs Web SDKs for all industry leading programming languages. | ✓ | ✓ | ✓ |
| API Key and Secret API Key and Secret authorization for all API endpoints. | ✓ | ✓ | ✓ |
| Data Sync (Web Hooks ) Sync consumer data with your external applications, eliminate data silos and ensure data is distributed to relying applications. | ✗ | ✓ | ✓ |
| Custom Domain Whitelist your domain to display your URL for all LoginRadius Domains. | ✗ | ✓ | ✓ |
| Self-serve Implementation Easy-to-follow implementation guides and support documentation to get up-and-running quickly and easily. | ✓ | ✓ | ✓ |
Product Add-ons
| Outbound SSO App Give your partners seamless access to your web applications through your preferred protocol – (SAML, JWT, Multipass, etc.) | ✗ | ✗ | $50 / Connection / Mo |
| Inbound SSO App Add a custom Identity provider using Inbound SAML – SSO. As a result, it will allow your consumers to log in to your application with their identity provider account using SSO. | ✗ | ✗ | $50 / Connection / Mo |
| Two-Factor Authentication Verify account access through SMS or an authenticator application. Backup codes, account recovery and other standard MFA processes are included. | ✗ | ✗ | $417 / Mo |
| Custom Object (Each) Store complex, schemaless consumer metadata based on your sites requirements. | ✗ | ✗ | $417 / Mo |
Cloud Connector (Integration)
| Native LR Integrations (one-way data sync) Integrate LoginRadius’ data and identity with any third-party application such as CRM, analytics, payment gateway, etc. | ✗ | ✗ | $292 / Mo / Integration |
Manage login interfaces to follow your brand design and styling.
Manage your team members for collaborative updates.
Manage users registered with your application.
Configure your application to fight against brute force attacks.
Configure 2FA to enhance authentication security for your users.
Integrate apps to fully leverage data and reach your business goals.
Use SSO to simplify customer onboarding and get return visits. LoginRadius supports all major industry single sign-on protocols - SAML, OAuth 2.0, JWT, OpenID.
Putting consumers in control of their privacy is our core approach. Our multilevel security environment ensures utmost protection of customer data.
Frictionless customer experience is crucial to driving growth in the age of digital disruption. Use LoginRadius to increase conversions and customer retention with a fair balance between privacy, security, and seamless experience.
100
%
Uptime
on a Monthly Basis
35
Data Centers
Worldwide
1.17
Billion
User Identities
180
K
Logins/Sec
Peak Load
I felt like a got a lot of help from a whole group of people and that there was never a lag in response time. Thanks for helping me get to the bottom of that issue.
To achieve our goals, we work with different businesses and organizations, consumers, and local governments. To successfully offer a wide variety of resources to such a diverse group of users, it was very clear to us that we needed to enhance our online presence and user experience to facilitate a stronger connection with our audience, which is why we began looking for a solution like LoginRadius.
We had compelling data that showed us how important having our users log-in was to our ecommerce experience, but we didn’t have anything that could be seamless for the client and most importantly secure. From supporting an easy password migration to supporting our Social Sign-On implementation, the LoginRadius team helped us architect a great authentication experience for our clients when we went live on our new ecommerce platform.
The less we hear about it, the more satisfied we are. After using LoginRadius, we do not see the authentication process as a barrier at all.
The less we hear about it, the more satisfied we are. After using LoginRadius, we do not see the authentication process as a barrier at all.