AngularJS 的 OAuth2 模块 angular-oauth2
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/seegno/angular-oauth2
- 软件文档: https://github.com/seegno/angular-oauth2
软件介绍
angular-oauth2 是 AngularJS 的 OAuth2 认证模块,使用 ES6 编写。
使用方法:
1. 引入 js 库:
<script src="bower_components/angular/angular.min.js"></script> <script src="bower_components/angular-cookie/dist/angular-cookie.min.js"></script> <script src="bower_components/query-string/query-string.min.js"></script> <script src="bower_components/angular-oauth2/dist/angular-oauth2.min.js"></script>
2. 配置 OAuth 和 OAuthToken
angular.module('myApp', ['angular-oauth2'])
.config(['OAuthProvider', function(OAuthProvider) {
OAuthProvider.configure({
baseUrl: 'https://api.website.com',
clientId: 'CLIENT_ID',
clientSecret: 'CLIENT_SECRET',
});
}]);
3. 错误处理:
angular.module('myApp', ['angular-oauth2'])
.run(['$rootScope', '$window', function($rootScope, $window) {
$rootScope.$on('oauth:error', function(event, rejection) {
// Ignore `invalid_grant` error - should be catched on `LoginController`.
if ('invalid_grant' === rejection.data.error) {
return;
}
// Redirect to `/login` with the `error_reason`.
return $window.location.href = '/login?error_reason=' + rejection.data.error;
});
}]);
The Smashing Book
Jacob Gube、Dmitry Fadeev、Chris Spooner、Darius A Monsef IV、Alessandro Cattaneo、Steven Snell、David Leggett、Andrew Maier、Kayla Knight、Yves Peters、René Schmidt、Smashing Magazine editorial team、Vitaly Friedman、Sven Lennartz / 2009 / $ 29.90 / € 23.90
The Smashing Book is a printed book about best practices in modern Web design. The book shares technical tips and best practices on coding, usability and optimization and explores how to create succes......一起来看看 《The Smashing Book》 这本书的介绍吧!
URL 编码/解码
URL 编码/解码
HEX CMYK 转换工具
HEX CMYK 互转工具
