Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ngx-oauth

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-oauth

Angular OAuth client which supports resource and implicit flows

  • 0.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
77
increased by4.05%
Maintainers
1
Weekly downloads
 
Created
Source

Angular OAuth

OAuth client for angular which supports resource and implicit flows

How to

<div class="login-component">
  <oauth-implicit [oauthConfig]="this"></oauth-implicit>
</div>  

where

export class ImplicitOauthSettings implements ImplicitOAuthConfig {
  authorizePath = '/oauth/authorize';
  profileUri = '/rest/v1/users/current';
  clientId = 'clientID';
  scope = 'basic';
}

@Component({
  selector: 'my-login',
  templateUrl: 'login.component.html',
  styleUrls: ['login.component.scss']
})
export class LoginComponent extends ImplicitOauthSettings {

  constructor() {
    super()
  }
}

or

<div class="login-component">
  <oauth-resource [oauthConfig]="this"></oauth-resource>
</div>

where

export class ResourceOAuthSettings implements ResourceOAuthConfig {
  tokenPath = '/oauth/token';
  profileUri = '/rest/v1/users/current';
  clientId = 'clientID';
  clientSecret = 'secret';
  username = 'username';
  password = 'password';
}

@Component({
  selector: 'my-login',
  templateUrl: 'login.component.html',
  styleUrls: ['login.component.scss']
})
export class LoginComponent extends ResourceOAuthSettings {

  constructor() {
    super()
  }
}

or create your custom login template using OAuthService

<form (submit)="oauthService.login()">
  <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="form-group">
        <input type="text" class="form-control" name="username" required [(ngModel)]="oauthService.username"
               placeholder="username">
      </div>
      <div class="form-group">
        <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>
</form>

and import OAuthService in your login component constructor

Installing:

npm install ngx-oauth --save

Import OAuthModule in your angular app

App Requirements

  • none

##Running the demo

  • change proxy context in webpack.config.dev.ts 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

Keywords

FAQs

Package last updated on 16 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc