Create a signature for a path and query string using HmacSHA1.
const signature = createSignatureForPathAndQuery("/some-path?foo=bar", "secret"); Copy
const signature = createSignatureForPathAndQuery("/some-path?foo=bar", "secret");
The secret to use for signing.
The signature of the signed url.
Create a signature for a path and query string using HmacSHA1.