1.2.0 • Published 4 years ago

adaptive-browser-sdk v1.2.0

Weekly downloads
6
License
MIT
Repository
github
Last release
4 years ago

Type npm NPM

IBM Security Verify Adaptive Browser SDK

The purpose of the Browser SDK is to enable a developer to initiate a collection process, and verify the collected data. The collection process consists of the SDK collection device information, which will be assigned to a session identifier, and evaluated at later points in time. This SDK is to be used in conjunction with the Proxy SDK, which will be responsible for evaluating the session identifier during authentication.

Prerequisites

Installation

After setting up the Proxy SDK on your server, you can install the IBM Security Verify Adaptive Browser SDK by cloning this repository, or installing from npm. Check out the Add the web SDK for a detailed guide.

npm install adaptive-browser-sdk

Overview

FunctionAsyncReturn
startAdaptiveV1(host, snippetID)undefined
getSessionId()Promise<Object>

Usage

Reference the Browser SDK in your application

<script src="/static/adaptive-v1.js"></script>

Alternatively, the minified version:

<script src="/static/adaptive-v1.min.js"></script>

Start the collection process

Starts the Trusteer collection process. This will gather device information, and assign it to a session ID under the hood. To obtain this session ID, see Get the session ID after collection.

startAdaptiveV1(host, snippetID)

ParameterTypeDescription
hoststringThe host of the Trusteer JavaScript snippet received during application onboarding.
snippetIDint | stringThe Trusteer snippet ID received during application onboarding.

Example usage

<script src="/static/adaptive-v1.js"></script>
<script>startAdaptiveV1('a1bcdefgh2ijkl.cloudfront.net', 123456);</script>

Get the session ID after collection

Retrieves the session ID once the collection process has completed. This function returns a promise, which is fulfilled after the collection process completes.

Note; it is startAdaptiveV1(host, snippetID) that eventually fulfills the returned promise. Therefore, startAdaptiveV1(host, snippetID) must be called in order to resolve the returned promise.

getSessionId()

Example usage

<script>
  getSessionId().then((sessionId) => {
    console.log(`Gathering has completed. Session ID received: ${sessionId}`);
  });
</script>

License

MIT License
Copyright 2020 - IBM Corp.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright
notice and this permission notice shall be included in all copies or
substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
1.2.0

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago