Angular OAuth
Ngx-oauth
is a fully OAuth 2.1 compliant angular library. The library supports all the 4 flows:
- resource
- implicit
- authorization code
- client credentials
Supports OIDC
PKCE
support for authorization code with code verification
How to
To start using the ngx-oauth
you need to import and configure the OAuthModule
module.
Example:
const oauthConfig = {
config: {
tokenPath: '/authorizationserver/oauth/token',
revokePath: '/authorizationserver/oauth/revoke',
clientId: '<your_client_id>',
clientSecret: '<your_client_secret>'
},
storage: localStorage,
storageKey: 'token'
};
@NgModule({
imports: [
OAuthModule.forRoot(oauthConfig),
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}
Example for authorization code flow with OIDC
and PKCE
For public oauth clients clientSecret
can be removed since is not used
const oauthConfig = {
config: {
clientId: '<your_client_id>',
clientSecret: '<your_client_secret>',
authorizePath: '/o/authorize/',
tokenPath: '/o/token/',
revokePath: '/o/revoke/',
scope: 'openid email profile',
pkce: true
},
}
Keycloak example for oidc with autodiscovery
const keycloakOpenIDConfig = {
config: {
issuerPath: 'http://localhost:8080/auth/realms/commerce',
clientId: '<your_client_id>',
}
};
Azure example
const azureOpenIDConfig = {
config: {
issuerPath: 'https://login.microsoftonline.com/common/v2.0',
clientId: '<your_client_id>',
scope: 'openid profile email offline_access',
pkce: true
}
}
Google example
const googleOpenIDConfig = {
type: OAuthType.AUTHORIZATION_CODE,
config: {
issuerPath: 'https://accounts.google.com',
clientId: '<your_client_id>',
clientSecret: '<your_client_secret>',
scope: 'openid profile email'
}
}
You can use the oauth-login
component
<div class="login-component">
<oauth-login></oauth-login>
</div>
or with params
@Component({
selector: 'login-component',
template: `
<oauth-login [type]="type"
[i18n]="i18n"
[profileName$]="profileName$"
[useLogoutUrl]="useLogoutUrl"
[(state)]="state"></oauth-login>
`
})
export class LoginComponent {
i18n: OAuthLoginI18n = {
username: 'Username'
};
state = 'some_salt_hash_or_whatever';
useLogoutUrl = true;
constructor(private oauthService: OAuthService) {
}
get profileName$(): Observable<string> {
return this.oauthService.userInfo$.pipe(
map(v => `${v.name} ${this.getPicture(v.picture)}`)
);
}
getPicture(picture?: string) {
return picture && `<img class="rounded-circle img-thumbnail" src="${picture}">` || ''
}
}
or create your custom login template using OAuthService
<div class="login-component">
<oauth-login>
<ng-template #login let-li="login" let-s="status" let-lo="logout">
<form (submit)="li({username: username, password: password})">
<ng-container *ngIf="s === OAuthStatus.AUTHORIZED; else loginTemplate">
<h2>profileName</h2>
<button (click)="lo()">Logout</button>
</ng-container>
<ng-template #loginTemplate>
<div class="card">
<div class="card-header text-center">
<h2 class="m-0 p-3">
<strong>Login</strong>
</h2>
</div>
<div class="card-body">
<div class="mb-3">
<input type="text" class="form-control" name="username" required [(ngModel)]="oauthService.username"
placeholder="username">
</div>
<div class="mb-3">
<input type="password" class="form-control" name="password" required [(ngModel)]="oauthService.password"
placeholder="password">
</div>
</div>
<div class="card-footer">
<div class="text-center">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</div>
</div>
</ng-template>
</form>
</ng-template>
</oauth-login>
</div>
and import OAuthService in your login component constructor
Installing:
npm install ngx-oauth --save
Import OAuthModule
in your angular app
App Requirements
Running the demo
- change proxy context in
proxy.conf.js
so that webpack forwards your request to your oauth server - in app.component.ts add your clientId, secret, oauth server token enpoint and user profile endpoint
- npm install
- npm start
Licensing
MIT License