개발/Python
메신저 인커밍 훅 (dooray hook)
# python 1234567891011121314151617import requests, json hookUrl = "https://hook.dooray.com/services/[key]"headers = {'Content-Type': 'application/json'}data = { botName: "testBot", botIconImage: "https://www.tistory.com/favicon.ico", text: "Hi bot", attachments: [ { title: "go to naver", titleLink: "https://www.naver.com", color: "orange" } ]}requests.post(hookUrl, headers=headers, data=json.dum..
2020. 10. 5. 16:13