wstrust-client

Simple WS-Trust Client for Node.js

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
wstrust-client
1630.0.111 years ago11 years agoMinified + gzip package size for wstrust-client in KB

Readme

WS-Trust Client 0.1
Simple WS-Trust Client for Node.js

Installation

$ npm install wstrust-client

Example Code

var trustClient = require('wstrust-client');

trustClient.requestSecurityToken({
    scope: 'https://yourapp.com',
    username: 'Your Username Here',
    password: 'Your Password Here',
    endpoint: 'https://your-ws-trust-endpoint-address-here'
}, function (rstr) {

	// Access the token and enjoy it!
	var rawToken = rstr.token;

	console.log(rawToken);

}, function (error) {
	
	// Error Callback
	console.log(error)

}

License (MIT)

Copyright (c) 2012, Leandro Boffi.

Author: Leandro Boffi0