1.0.2 • Published 4 years ago
@cognifit/launcher-js-sdk-one-level v1.0.2
CogniFit SDK
Connect your Angular web apps with CogniFit. Launch CogniFit session for your users.
Requirements
Contact CogniFit to register your partner and get your credentials.
Use the CogniFit API or the CogniFit PHP SDK to register users on CogniFit and to get access tokens.
Installation
$ npm install @cognifit/launcher-js-sdk@@latest
Usage
Request a CogniFit user access token
Use the CogniFit API or the CogniFit PHP SDK to get an active access token for the user.
Initialize CogniFit SDK
import { cognifitSdk } from '@cognifit/launcher-js-sdk'; import { CognifitSdkConfig } from '@cognifit/launcher-js-sdk/lib/lib/cognifit.sdk.config'; clientId: string; // Provided by CogniFit agent clientHash: string; // Provided by CogniFit agent callbackUrl: string; // Must be communicated to CogniFit agent before be used cognifitUserAccessToken: string; // Requested in previous section sandbok: boolean; // Default false. Sandbox needs to be allowed by CogniFit agent cognifitSdk.init(new CognifitSdkConfig( clientId, clientHash, callbackUrl, cognifitUserAccessToken, sandbok ));
Launch session
typeValue: string; keyValue: string; cognifitSdk.start(typeValue, keyValue, function(data) { console.log(' +++++ YOUR CALLBACK FUNCTION +++++'); console.log(data); });
- typeValue: 'ASSESSMENT', 'TRAINING', 'GAME'
- keyValue: Get accepted values on CogniFit API
- Assessments: Assessment list
- Training Training list
- Games: Brain Game List
Response
The data parameter in the callback function is a json object.
- status:
- completed
- aborted
- loginError
- trainings: Training keys to be done
- trainingsSessionIds: Session ids completed
- trainingsDone: Training key completed
- assessments: Assessment keys to be done
- assessmentsSessionIds: Assessment keys to be done
- assessmentsDone: Assessment keys to be done
- message: If status is loginError
Errors
In initialization
When calling cognifitSdk.init or cognifitSdk.start some errors could be return. Error can be retreive using:- cognifitSdk.cognifitSdkError.getError()
cognifitSdk.cognifitSdkError.getMessage()
Launching session
When CognFit loading fails the object received in the callback is:
{status: "loginError", message: "Client do not exists"}
The error message could be:
- User do not exists
- Client do not exists
- Token is not valid
1.0.2
4 years ago