Skip to content

Instantly share code, notes, and snippets.

@yazinsai
Forked from devStepsize/slack_webhook_post.py
Last active May 8, 2019 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yazinsai/2452879d909ab1a612e9fcd69ad62373 to your computer and use it in GitHub Desktop.
Save yazinsai/2452879d909ab1a612e9fcd69ad62373 to your computer and use it in GitHub Desktop.
POST a JSON payload to a Slack Incoming Webhook using Python requests
'''
This is an example of how to send data to Slack webhooks in Python with the
requests module.
Detailed documentation of Slack Incoming Webhooks:
https://api.slack.com/incoming-webhooks
'''
import requests
# Set the webhook_url to the one provided by Slack when you create the webhook at
# https://my.slack.com/services/new/incoming-webhook/
webhook_url = 'https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX'
slack_data = {'text': 'Message from Python! :spaghetti:'}
response = requests.post(webhook_url, json=slack_data)
if response.status_code != 200:
raise ValueError(
'Request to slack returned an error %s, the response is:\n%s'
% (response.status_code, response.text)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment