From 19dbabb9c67de7c1c67e27f48de1c9aa9ab5c2f7 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 23 Jun 2023 17:11:57 -0400 Subject: [PATCH] remove test.py --- test.py | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 test.py diff --git a/test.py b/test.py deleted file mode 100644 index 1e028d5..0000000 --- a/test.py +++ /dev/null @@ -1,24 +0,0 @@ -import requests,urllib.error, json, re - - -################# -# Webhook Vars: # -################# -#webhook_endpoint = "https://webhooks.thezengarden.net/web/webhook-callback-poc" -#webhook_token = "5S2OtSb9KXWDyV8xYl4_Rvucz2KZHyFDRkFbRzLj78yP" -webhook_endpoint = "https://webhooks.thezengarden.net/web/webhook-callback-poc?token=5S2OtSb9KXWDyV8xYl4_Rvucz2KZHyFDRkFbRzLj78yP" - - -print("sending webhook payload...") - -# webhook_auth_header = {'Token': webhook_token } -webhook_payload = {'webhook-callback-poc': "This is a sample message sent to a webhook."} -resp = requests.post(webhook_endpoint, - headers=webhook_auth_header, - json = webhook_payload) - -print("payload sent!") -print(resp) -print(webhook_endpoint) -print(webhook_auth_header) -print(webhook_payload)