wstrust-client

Simple WS-Trust Client for Node.js

Usage no npm install needed!

<script type="module">
  import wstrustClient from 'https://cdn.skypack.dev/wstrust-client';
</script>

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 Boffi