Auth0 and AngularJS
This AngularJS module will help you implement client-side and server-side (API) authentication. You can use it together with Auth0 to add support for username/password authentication, enterprise identity providers like Active Directory or SAML and also for social identity providers like Google, Facebook or Salesforce among others to your web, API and mobile native apps.
Auth0 is a cloud service that provides a turn-key solution for authentication, authorization and Single Sign On.
Key Features
- User Login & Signup: This module lets you easily sign in and sign up your users with any Social Provider, Enterprise Provider or Username and password. You can use the UI already made by Auth0 or create your own
- Persistent user authentication: We'll take care of keeping the user logged in after page refresh, browser closed and so on.
- Authenticated API calls: We'll take care of automatically adding the
JWT
in every request that is made to your API after the user is authenticated - Events/Promise based services: Our service supports both Events based actions as well as promise based ones
- Token management: We'll handle the token storage and configuration all the time. You don't even need to know there's a token.
Installation
You can install this plugin several ways
Bower
bower install auth0-angular
NPM
npm install auth0-angular
CDN
<script type="text/javascript" src="//cdn.auth0.com/w2/auth0-widget-5.js"></script>
<script type="text/javascript" src="//cdn.auth0.com/w2/auth0-angular-1.js"></script>
TL;DR: Quick start guide
Add module dependency and configure it
angular.module('myCoolApp', ['auth0'])
.config(function(authProvider, $httpProvider) {
authProvider.init({
domain: 'mydomain.auth0.com',
clientId: 'myClientId',
loginUrl: '/login',
callbackUrl: location.href
});
$httpProvider.interceptors.push('authInterceptor');
})
.run(function(auth) {
auth.hookEvents();
});
Showing the signin popup and getting the information
angular.module('myCoolApp').controller('LoginCtrl', function(auth) {
$scope.signin = function() {
auth.signin({popup: true}, function() {
$location.path('/user-info')
}, function(err) {
console.log("Error :(", err);
});
}
});
<a href="" ng-click="signin()" />
Showing user information
angular.module('myCoolApp').controller('UserInfoCtrl', function(auth) {
$scope.profile = auth.profile;
});
<span>{{profile.first_name}} {{profile.email}}</span>
Getting Started Guide
Preface: Authentication Modes
There're 3 modes to handle authentication with all the Providers (Facebook, Linkedin, Github, AD, LDAP, etc.) that Auth0 can handle. Redirect mode implies that the page you're seeing is going to get redirected to the page of the provider so that you can login. Popup mode implies that your angular app will open a popup window which will go to the provider website so that you can login and then close itself to show the Angular app again. This is really important to your app because if you use Redirect Mode, it means that your angular app will get reloaded completely after the user is authenticated with the provider. In Popup mode, the angular app will remain open.
The third mode is just doing a CORS call to /ro
to authenticate the user. This is only used for Database-Password
connections. In this case, the website will not refresh either.
Dependencies
auth0-angular depends on either auth0.js
or auth0-widget.js
.
If you want to use Auth0's beautiful Widget UI, you need to include auth0-widget.js
. This lets you configure Title and Icons, but the UI is taken care for you. For all the customization properties, please check out tihs link
Otherwise, if you'll use a custom UI, you need to include auth0.js
.
It's important to note that this scripts must be included before auth0-angular.
If you're using bower
or npm
, this 2 scripts are set as a dependency of auth0-angular so that you choose the best for you. Otherwise, you can include them from the CDN:
<script type="text/javascript" src="//cdn.auth0.com/w2/auth0-widget-5.js"></script>
<script type="text/javascript" src="//cdn.auth0.com/w2/auth0-3.js"></script>
SDK API
This is the API for the SDK. []
means optional parameter.
auth.signin(options)
This method does the signin for you. If you're using auth0-widget
, it'll display Auth0's widget, otherwise it'll just do the login with the Identity provider that you ask for.
The most important option is the popup
option. If set to true
, popup mode will be used and as the Angular page will not reload, you can use callbacks to handle the sigin success and failure. We don't use promises since once the widget is openned, the user can enter the password wrong several times and then enter it ok. We cannot fullfill a promise (with success or failure) more than once unfortunately.
auth.signin({popup: true}, function(
$location.path('/');
), function(error) {
})
If you set popup
option to false
(this is the default value), there're 2 posibilities.
If you've set the username
and password
options, then a CORS call to /ro
will be done and you can use a promise to handle this case.
auth.signin({
username: $scope.username,
password: $scope.password,
connection: ['Username-Password-Authentication']
}, function(
$location.path('/');
), function(error) {
})
If you set popup
option to false
(this is the default value) and you don't set username and pasword as options, redirect mode will be used. As Angular page is realoded, you cannot use callbacks nor promises to handle login success and failure. You'll need to use events
to handle them:
module.config(function(authProvider) {
authProvider.on('loginSuccess', function($location) {
$location.path('/');
});
authProvider.on('loginFailure', function($location, error) {
$location.path('/error');
});
});
auth.signin(
);
You can read a more extensive tutorial on how to use auth0-angular with popup mode here and with redirect mode here.
The rest of the options that can be sent can be checked here.
auth.signup(options)
This shows the widget but in signup
mode. It has the same options and parameters as the login. It's important to note that it'll perform a login after a successful signup.
auth.reset(options)
This will show the Forgot your password window. It returns a promise that will tell you if the change was done successfully or not.
auth.signout()
This signouts the user. Deletes the token from the client storage.
auth.profile
This property contains the profile from the user. This will be filled after the user has logged in successfully. If you want to use information from auth.profile
only after the user is logged in, you can just do a $watch
on this property to wait until it's set. Returns a promise.
auth.isAuthenticated
This flag returns wether there's a user authenticated or not.
auth.id_token, auth.access_token, auth.state
This property contains the tokens returned after the user is logged in. Mostly for internal usage.
auth.refreshToken()
You can configure your token to expire after certain time. If you don't want your user to login again, you can just refresh the current token, which means getting a new token that will be valid for a certain amount of time.
For example, let's imagine you have a token valid for 10 hours. After 9 hours, you can refresh the token to get a new token that's going to be valid for another 10 hours. You just need to call this method in that case and we'll handle everything for you. Returns a promise.
auth.hookEvents()
auth0-angular takes care of checking that unauthenticated users canoot access restricted resources. For that, auth0-angular hooks to internal angular events so that we can redirect the user to the login page if he doesn't have the right permission to access a page. For that, you need to hook auth0-angular to all of this events on application run
First, you need to configure the restricted routes:
module.config(function($routeProvider) {
$routeProvider.
when('/info', {
templateUrl: 'info.html',
controller: 'InfoCtrl',
requiresLogin: true
}).
when('/login', {
tempalteUrl: 'login.html',
controller: 'LoginCtrl'
});
authProvider.init({
domain: 'domain',
clientId: 'clientId',
callbackUrl: location.href,
loginUrl: '/login'
})
})
module.config(function($stateProvider) {
$stateProvider.
state('info', {
url: '/info'
templateUrl: 'info.html',
controller: 'InfoCtrl',
data: {
requiresLogin: true
}
}).
state('login', {
url: '/login'
tempalteUrl: 'login.html',
controller: 'LoginCtrl'
});
authProvider.init({
domain: 'domain',
clientId: 'clientId',
callbackUrl: location.href,
loginState: 'login'
})
});
Then, you just call hookEvents
in the run
method
module.run(function(auth) {
auth.hookEvents();
});
To learn more about routing and using ngRoute
or ui-router
with your app, please read this tutorial
auth.getToken(targetClientId)
This method does a Delegation Token request. Imagine you have 2 APIs. The user in your angular app is loged in to your angular app that uses API #1. If you want to use API #2, you need to exchange the token you have for the API #1 for a valid one for API #2. This is what this method does. The targetClientId
parameter is just the identifier of the API #2 in this case. Returns a promise.
To learn more about delegated access please click here.
auth.hasTokenExpired(token)
This returns if a particular token has expired or not. Mostly for internal usage.
authProvider.init(options)
You use this method to configure the auth service. You must set the following options:
- domain: The domain you have from your Auth0 account
- callbackUrl: The callback URL. Usually this is
location.href
- clientId: The identifier for the application you've created. This can be got from the settings from your app on Auth0.
- sso: If you have more than one application and you want Single Sign On on your apps, just set this to true. This will mean that if a user signs in to app 1, when he tries to use app2, he will be already logged in
- loginUrl: Set this to the login url if you're using ngRoute
- loginState: Set this to the login state if you're using ui-router
authProvider.on(event, handler)
You can configure the handlers for all the different events that can happen in your app. The following are the available events right now:
- loginSucces: This will get called after a user has successfully logged in. In the handler, you can inject any service you want besides the
profile
and token
from the user - loginFailure: This will get called if there's an error authenticating the usr. In the handler, you can inject any service you want besides the
error
which was thrown - logout: This will get called after a user has successfully logged out.
- forbidden: This will get called if a request to an API is made and it returns 401 meaning that the user cannot access that resource. That usually happens when the token is expired. In that case, you should redirect the user to the login page in most cases.
It's important to note that in the case of redirect mode, it's mandatory to handle login events in this way. In the case of popup mode, you can still handle the login events this way, but you can also handle them with a promise on the signin method.
Tutorials & Examples
This is the list of all of the available tutorials.
Using Auth0 Widget (You don't want your custom UI)
Redirect mode
Click here to read the tutorial
Click here to see the tutorial
Clcik here to read the tutorial
Click here to see the example
With your own UI
User/Password Login
Click here to read the tutorial
Click here to see the example
Social Login
Click here to read the tutorial
Click here to see the example
Consuming a protected REST API
Click here to read the tutorial
Click here to see the example
Join or Link accounts
Click here to read the tutorial
Integrating to routes (ui-router and ngRoute)
Click here to read the tutorial
Click here to see the ui-router example
Click here to see the ngRoute example
Click here to see the html5mode example
Using your custom storage
Click here to learn how to use your custom storage to store the tokens instead of ngCookies
Delegation Token
Click here to see the delegation token example
Signup with custom fields (Besides Email & Password)
Click here to see the delegation token example
SSO
Click here to see the SSO example
Changelog
Check the CHANGELOG file to see the changes from version to version
Contributing
Read here how to run auth0-angular tests
What is Auth0?
Auth0 helps you to:
- Add authentication with multiple authentication sources, either social like Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, amont others, or enterprise identity systems like Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider.
- Add authentication through more traditional username/password databases.
- Add support for linking different user accounts with the same user.
- Support for generating signed Json Web Tokens to call your APIs and flow the user identity securely.
- Analytics of how, when and where users are logging in.
- Pull data from other sources and add it to the user profile, through JavaScript rules.
Create a free account in Auth0
- Go to Auth0 and click Sign Up.
- Use Google, GitHub or Microsoft Account to login.