Skip to content

Commit

Permalink
Make webhook.site a link
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianrbz committed Dec 19, 2024
1 parent 58efd19 commit 2d23cba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/_how-tos/create-a-webhook-with-kong-gateway.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ prereqs:
inline:
- title: A webhook URL
content: |
* You can generate a URL by navigating to https://webhook.site and copying the free URL.
* You can generate a URL by navigating to [https://webhook.site](https://webhook.site) and copying the free URL.
* Set that URL as an environment variable `export WEBHOOK_URL=YOUR_URL`.
- title: cURL
include_content: prereqs/tools/curl
Expand Down Expand Up @@ -71,7 +71,7 @@ curl -i -X POST http://localhost:8001/consumers \
-d username="my-consumer"
```

Verify on `webhook.site` that you received a `POST` request. It will look like this:
Verify on [`https://webhook.site`](https://webhook.site) that you received a `POST` request. It will look like this:

```json
{
Expand All @@ -90,4 +90,4 @@ Verify on `webhook.site` that you received a `POST` request. It will look like t
}
```

This response body contains the `operation`, the `source`, and the `event`, confirming that a new Consumer was created
This response body contains the `operation`, the `source`, and the `event`, confirming that a new Consumer was created.

0 comments on commit 2d23cba

Please sign in to comment.