0.0.1 • Published 12 years ago

wstrust-client v0.0.1

Weekly downloads
210
License
-
Repository
github
Last release
12 years ago

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 Boffi