목록Slack (1)
without haste but without rest
슬랙 API 메세지 전송 템플릿 - python
슬랙 채널로 메세지를 보내는 코드는 다음과 같다. 현재 슬랙 라이브러리 지원이 종료된 상태라 requests 라이브러리로 메세지를 보내야 한다. import requests token = "your-app-token" def post_message(token, channel, msg): requests.post("https://slack.com/api/chat.postMessage", headers={ "Authorization": "Bearer " + token }, data={ "channel": channel, "text": msg }) post_message(token, "#my-channel", "Hello, World") 위 코드를 객체화 해서 특정 롤에 벗어나는 경우 슬랙으로 알림 메세지를 ..
ProgrammingLanguage/Python
2021. 6. 11. 13:45