Socket
Socket
Sign inDemoInstall

spray-client

Package Overview
Dependencies
52
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    spray-client

Utility Access for Spray API


Version published
Weekly downloads
4
Maintainers
1
Install size
5.77 MB
Created
Weekly downloads
 

Readme

Source

Spray Client

This JavaScript library can be used to access ChakSoft Spray API from NodeJS 6.x.

Installation

$ npm install spray-client

Usage

Initialization

const SprayClient = require('spray');

Register your application

When you want to use Spray API, you will have to make sure your application has been created on the AuthWeb ChakSoft platform. Then your app has to be approved by ChakSoft and you will receive your API Key.

This key must not be known by your users.

We'll assume here the key is supersecretkey.

Configuration

const client = new SprayClient({
    apiKey: 'supersecretkey', // Here goes your secret key (mandatory)
    apiVersion: '2.0.0', // Here goes the API Version (default 2.0.0)
    promised: true // If you don't want the client to use promises, put `false` in this field. (default true)
});

Your client is now configured.

Interactions

Use client to login your users

On a login backend callback in your application :

client.login().then(data => {
    // Redirect your user to the URI in `data.login.redirectTo`.
}).catch(err => console.error(err));

Your user will be redirected to AuthWeb website to login and allow your application. Then, AuthWeb will redirect the user on your application following this pattern :

${YOUR_WEBSITE_ADDRESS}/spray?allow=(0|1)[&token=LOGIN_TOKEN]

If the allow parameter is 0, the user has prevented your application from fetching information in AuthWeb. You cannot continue. If the allow parameter is 1, the user has allowed your application, and you can store the login token in your session system to ensure your user will remain connected.

Fetch user information

When you have created your application, a selection box let you specify which user information fields your application was authorized to fetch. Only the fields you requested will be present in the returned JSON object.

client.info(loginToken).then(data => {
    // You can store this information in your own database or update fields if the user has modified something
}).catch(err => console.error(err));
Without promises

If you don't want use bluebird promises in your application, which is recommended though, you can pass a callback as the last argument of each function of the SprayClient.

FAQs

Last updated on 15 Sep 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc