s5.js
s5 是 StudentRND 服务单点登录系统。 这是与之交互的节点模块。
安装
npm install s5
例子
var s5 = require ( 's5' ) ;
// Create an s5 instance with your API credentials
var sso = new s5 ( "YOUR_API_KEY" , "YOUR_API_SECRET" ) ;
// Get the OAuth URI with extended privileges
sso . getOAuthURI ( "http://example.com/oauth/s5" , "extended" ) ;
// Exchange the provided code for an access token
sso . exchangeCode ( code , call
1