insomnia-plugin-jws-by-truelayer
v0.0.3
Published
Adds a JSON Web Signature header to HTTP requests by using the request body as detached payload.
Downloads
39
Readme
Insomnia JSON Web Signature Plugin by TL
This plugin adds a JSON web signature header to HTTP requests by using the request body as payload.
Please note: this plugin detaches the payload from the signature, as allowed by the RFC7519.
Steps to configure:
Make sure your insomnia environment contains the following properties:
ENVIRONMENT_URI
: the environment base url you want to point toREQUIRE_JWS
: this property must be set to true (not"true"
buttrue
, i.e. boolean not string), without it the plugin won't try to sign the requestCERTIFICATE_ID
: your signing certificate idPRIVATE_KEY
: your signing private key. Important: JSON does not allow line-breaks, so you have to replace all the private key line-breaks with the newline character, i.e.\n
, which will restore your line-break when the string is parsed.
You can install this plugin directly from the Insomnia plugins directory: look for "JWS by TrueLayer" and follow the instructions to install the plugin.
If you prefer installing this plugin directly from the repository, please follow the instructions here: https://support.insomnia.rest/article/26-plugins#create-a-plugin
Once you installed the plugin, your requests will automatically try to use it as soon as you enable it, which means the requests will fail if you do not set the env properties mentioned above.