Socket
Socket
Sign inDemoInstall

@slashid/shopify-sdk

Package Overview
Dependencies
0
Maintainers
10
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @slashid/shopify-sdk

Shopify SDK allows you to seamlessly authenticate your customers to Shopify with SlashID. This is done by exchanging a SlashID user token for a Shopify Multipass token.


Version published
Weekly downloads
1
Maintainers
10
Created
Weekly downloads
 

Readme

Source

SlashID Shopify SDK

Shopify SDK allows you to seamlessly authenticate your customers to Shopify with SlashID. This is done by exchanging a SlashID user token for a Shopify Multipass token.

Read the docs

Installation

npm install @slashid/shopify-sdk

Setup

  1. Create a SlashID account
  2. Follow the integration guide on the SlashID developer portal
  3. Make sure you have the following information:
    • storeURL - the URL of your Shopify store
    • externalCredentialsId - the ID of the external credentials you created in the SlashID developer portal
    • slashIdToken - the token you get by logging in with SlashID

Usage

import { ShopifySDK } from "@slashid/shopify-sdk";

const storeURL = "https://mystore.myshopify.com";
const slashIdToken = "<get the token by logging in with SlashID>";
const externalCredentialsId = "<store Shopify secrets safely with SlashID>";

let shopifySDK = new ShopifySDK({ storeURL });

// get a customer access token to use with the Shopify Storefront API
let customerAccessToken = await shopifySDK.getCustomerAccessToken(
  slashIdToken,
  externalCredentialsId
);

// navigate to the Shopify store without having to login again
let multipassToken = await shopifySDK.getMultipassToken(
  slashIdToken,
  externalCredentialsId
);
shopifySDK.redirectToShopify(multipassToken);

// optionally pass a return_to field to be used in Multipass
let multipassTokenWithReturnTo = await shopifySDK.getMultipassToken(
  slashIdToken,
  externalCredentialsId,
  multipassFields: {
    return_to: "https://mystore.myshopify.com/cart",
  }
);

// Shopify will redirect to the return_to URL after login
shopifySDK.redirectToShopify(multipassToken);

FAQs

Last updated on 23 Aug 2023

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc