Woocommerce – Get raw request body in feathers
I try to implement a WooCommerce webhook functionality for feathers. To authenticate the request I need to verify the signature of the raw request body like so const isSignatureValid = ( secret: string, body: any, signature?: string ): boolean =>…