UNPKG

@shopify/shopify-api

Version:

Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks

9 lines (7 loc) 207 B
import crypto from 'crypto'; export function getHmac(body: string, apiSecretKey: string): string { return crypto .createHmac('sha256', apiSecretKey) .update(body, 'utf8') .digest('base64'); }