Is it Possible to Add Authentication to Requestbin for Testing and Debugging Webhooks?

This topic was automatically generated from Slack. You can find the original thread here.

hey there, i am trying to create a public endpoint to test and debug webhooks. it seems easy enough to use requestbin, but the app i am working with requires authentication to send webhooks. is there a way to add basic or token auth to requestbin?

You can add basic API authentication two different ways.

  1. Add a Filter step to a workflow and reject any requests that don’t contain the API key secret in the headers
  2. Create a custom HTTP source with this logic built in, so you can filter out events before they hit your workflow

awesome, thank you! i got it figure out. really appreciate it!