| commit | 29b76dcb90a355285f15c44aae7affaf75647898 | [log] [tgz] |
|---|---|---|
| author | David Arthur <mumrah@gmail.com> | Fri Aug 16 14:27:14 2024 -0400 |
| committer | David Arthur <mumrah@gmail.com> | Fri Aug 16 14:27:14 2024 -0400 |
| tree | edacb67343d8aa6ef250f3cef8d22dfdb85b7cfb | |
| parent | 148ad72110a18527ca975f519ea1ab6548c83bb9 [diff] |
WIP
diff --git a/webhook-receive.py b/webhook-receive.py index c26897b..2e4191e 100644 --- a/webhook-receive.py +++ b/webhook-receive.py
@@ -4,8 +4,7 @@ @app.route('/webhook', methods=['POST']) def webhook_receiver(): - data = request.json # Get the JSON data from the incoming request - # Process the data and perform actions based on the event + data = request.json print("Received webhook data:", data) return jsonify({'message': 'Webhook received successfully'}), 200