Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blake/insomnia-plugin-hubspot
HubSpot HTTP request signature signing for Insomnia
https://github.com/blake/insomnia-plugin-hubspot
hubspot hubspot-api insomnia insomnia-plugin
Last synced: 17 days ago
JSON representation
HubSpot HTTP request signature signing for Insomnia
- Host: GitHub
- URL: https://github.com/blake/insomnia-plugin-hubspot
- Owner: blake
- License: mit
- Created: 2019-05-13T22:10:32.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-09-26T18:47:51.000Z (about 1 year ago)
- Last Synced: 2024-10-13T01:10:21.356Z (about 1 month ago)
- Topics: hubspot, hubspot-api, insomnia, insomnia-plugin
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# insomnia-plugin-hubspot
HubSpot HTTP API request signing for Insomnia.
## Installation
Install `insomnia-plugin-hubspot` plugin from Preferences > Plugins.
## Usage
Configure your HubSpot secret and desired request signature type under the
`hubspot` environment variable.```json
{
"hubspot": {
"secret": "[YOUR API SECRET]",
"signatureType": "[OPTIONAL: ]"
}
}
```Note: `signatureType` defaults to 'application' if not specified.
Insomnia will automatically generate and append an `X-HubSpot-Signature` header
to the outgoing request for configured signature type.The signature type can be overridden on a per-request basis by manually
configuring the `X-HubSpot-Signature` header, and selecting the template tag for
the desired HubSpot signature type (application or webhook).## Request Signature formats
For more information on HubSpot's Webhook API request signatures, see
[Webhooks Overview - Security](https://developers.hubspot.com/docs/methods/webhooks/webhooks-overview#security).For application request signatures, see [Validating requests from HubSpot](https://developers.hubspot.com/docs/faq/validating-requests-from-hubspot).