Authing 是一个提供身份认证服务的产品:https://authing.cn.
Authing 让您 7 行代码接入用户系统成为可能。
如果您想为 Authing 贡献 SDK,请参考SDK Guide。
未来我们将支持大部分主流语言,但目前我们只支持 Javascript:
1
ivydom OP # authing-js-sdk
---------- JavaScript SDK 支持 **Angular.js**, **React.js**, **Vue.js** 以及 **Node.js**.我们提供了完全一致的接口. ## 安装 ---------- #### NPM 当构建大规模应用时,我们推荐使用```npm```进行安装, 它可以与一些模块打包工具很好地配合使用,如 ```Webpack```, ```Browserify。``` ``` shell # latest stable $ npm install authing-js-sdk --save ``` ## 开始使用 ---------- ##### 使用方法 ##### ES5 在```ES5```中我们使用 **Promise** 处理异步编程。 ``` javascript var Authing = require('authing-js-sdk'); // 对 Client ID 和 Client Secret 进行验证,获取 Access Token var auth = new Authing({ clientId: 'your_client_id', secret: 'your_app_secret' }); auth.then(function(validAuth) { //验证成功后返回新的 authing-js-sdk 实例(validAuth),可以将此实例挂在全局 validAuth.login({ email: '[email protected]', password: 'testpassword' }).then(function(user) { console.log(user); }).catch(function(error) { conosle.log(error); }); }).catch(function(error) { //验证失败 console.log(error); }); ``` [怎样获取 client ID ?]( http://docs.authing.cn/#/quick_start/howto)。 ##### ES6+ 在```ES6+```中,我们使用 **async 函数** 和 **await 关键字** 处理异步编程。 ``` javascript import Authing from 'authing-js-sdk'; const main = async () => { //使用 async 时需要使用 try...catch...捕捉错误 let auth; try{ auth = await new Authing({ clientId: 'your_client_id', secret: 'your_app_secret' }); }catch(error) { console.log('Authing 验证失败:', error); } if(auth) { let user; try { user = await auth.login({ email: '[email protected]', password: 'testpassword' }); }catch(error) { console.log('登录失败:', error); } if(user) { console.log('login success'); }else { console.log('login failed'); } } } main(); ``` 了解更多报错的详情,请查看[错误代码]( http://docs.authing.cn/#/quick_start/error_code)。 获取 Client ID 和 Client Secret,请[点击这里]( http://docs.authing.cn/#/quick_start/howto)。 |