Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

remote-pay-cloud

Package Overview
Dependencies
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remote-pay-cloud

Access Clover devices through the cloud

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
224
decreased by-26.32%
Maintainers
1
Weekly downloads
 
Created
Source

Repository for Clover's cloud connector API. Published as an NPM package. Intended for use in a browser environment.

##At a Glance Make a sale.

var cloverLib = require("clover-cloud").Clover;
var clover = new Clover({
  "clientId" : "3BZPZ6A6FQ8ZM",
  "domain" : "https://sandbox.dev.clover.com/",
  "merchantId" : "VKYQ0RVGMYHRS",
  "deviceSerialId" : "C021UQ52341078"
});
clover.initDeviceConnection(function(error) {
  if(error) console.log(error)
  else clover.sale({"amount" : 10000, "tipAmount" : 1500 }, 
    function(error, saleResult) {
      if(error) console.log(error);
      console.log(saleResult);
      clover.close();
  });
});

To make a payment using the High Level Cloud API ####Create the Clover object.

var cloverLib = require("clover-cloud").Clover;
var clover = new Clover(configuration);

There are several ways the Clover object can be configured.

Examples of creating the Clover object:

  1. With a clientID, domain, merchantId, deviceSerialId
{
  "clientId" : "3BZPZ6A6FQ8ZM",
  "domain" : "https://sandbox.dev.clover.com/",
  "merchantId" : "VKYQ0RVGMYHRS",
  "deviceSerialId" : "C021UQ52341078"
}
  1. With a oauthToken, domain, merchantId, deviceSerialId
{
  "oauthToken" : "6e6313e8-fe33-8662-7ff2-3a6690e0ff14",
  "domain" : "https://sandbox.dev.clover.com/",
  "merchantId" : "VKYQ0RVGMYHRS",
  "deviceSerialId" : "C021UQ52341078"
}
  1. Relying on a saved configuration in a cookie

####Define how your program will use the Clover object #####In this example, this function will be passed when we start communicating with the device. If there is an error when communication is initiated, this function will get the error as a parameter.

function makeASale(error) {
  if(error) console.log(error)
  else clover.sale({"amount" : 12345, "tipAmount" : 123 }, mySaleResult);
}

#####Here we define the error-first callback that we pass in to the Clover.sale function above. If an error occurs, it will be the first parameter.

function mySaleResult(error, saleResult) {
  // do something with the result
}

####Start communicating with the device and tell the device to call your program when it is ready

clover.initDeviceConnection(makeASale);

Keywords

FAQs

Package last updated on 08 Apr 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc