npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wmt-marketplace-auth-canada

v1.1.0

Published

Generate the authentication headers required by Walmart Marketplace API.

Downloads

12

Readme

wmt-marketplace-auth-canada

npm license github-issues

Generate the authentication headers required by Walmart Marketplace API.

nodei.co

stars forks

Features

  • Returns the required authentication headers including the digital signature.
  • Defaults the Accept and Content-Type headers to application/json, which can be changed to application/xml if XML is preferred.
  • Generates a UUID for the CorrelationId if one is not specified for the request.
  • Timestamp can be directly set or default to current time.

Typical Usage

Set the custom headers, then use Authenticate.sign() for the specified request.

import { Authenticate } from 'wmt-marketplace-auth-canada';

let headers = new Authenticate.Custom;
headers.setCorrelationId('1234hfvgtr');
headers.setConsumer({
    Channel: { Type: '38b7eb6c-3672-4022-93a2-f47794f36338' },
    ConsumerId: 'f091ae58-774c-45ff-9d8a-e30a83344e42'
});

let request = {
  RequestUrl: 'https://marketplace.walmartapis.com/v3/feeds',
  PrivateKey: 'MIIBVgIBADANBgkqhkiG9w0BAQEFAASCAUAwggE8A...',
  RequestMethod: 'GET'
}

let signedHeaders = Authenticate.sign(headers, request);

Outputs Authentication headers as an object.

{
  "WM_SVC.NAME": "Walmart Marketplace",
  "WM_QOS.CORRELATION_ID": "1234hfvgtr",
  "WM_SEC.TIMESTAMP": 1523287838530,
  "WM_SEC.AUTH_SIGNATURE": "E1EPWiqwuLYceSVr2XGmljo7qq1+EDI5++1XvFcVf+/klas+mLMAJbDihfAwkjyDxi3WkJDdTCNfle0O+4V/9g==",
  "WM_CONSUMER.CHANNEL.TYPE": "38b7eb6c-3672-4022-93a2-f47794f36338",
  "WM_CONSUMER.ID": "f091ae58-774c-45ff-9d8a-e30a83344e42",
  "Accept": "application/json",
  "Content-Type": "application/json"
}

Options

Change the Accept or Content-Type headers from JSON to XML.

headers.Accept = 'application/xml';
headers.ContentType = 'application/xml';

Set a custom timestamp.

headers.setTimestamp(1523287838530);

Install

npm install --save wmt-marketplace-auth-canada

Scripts

  • npm run build : rimraf ./lib/ && tsc -p .
  • npm run readme : rm ./README.md && node ./node_modules/.bin/node-readme
  • npm run package : npm run build && npm run readme
  • npm run test : mocha --require ts-node/register $(find ./test/ -name "*.spec.ts")

Dependencies

Package | Version | Dev --- |:---:|:---: uuid | 3.2.1 | ✖ ts-node | 5.0.1 | ✔ typescript | 2.8.1 | ✔ tslint | 5.9.1 | ✔ mocha | 5.0.5 | ✔ chai | 4.1.2 | ✔ nyc | 11.6.0 | ✔ rimraf | 2.6.2 | ✔ @types/mocha | 5.0.0 | ✔ @types/chai | 4.1.2 | ✔ @types/node | 9.6.2 | ✔ @types/uuid | 3.4.3 | ✔ node-readme | 0.1.9 | ✔

Contributing

We are always excited when we can make our projects open source and allow contributors to build and work on these components. To make this possible, there are a few things we kindly ask all contributors to understand and follow. Please review the Contributing Guide.

Author

Kane McConnell [email protected]

License

  • MIT : http://opensource.org/licenses/MIT