slack invalid_auth
[ 오류 해결 ] slacker.Error: invalid_auth
[ 오류 해결 ] slacker.Error: invalid_auth
2022.03.07Slack의 정책 업데이트로 인해 2021.2.24 이후로 새로 생성된 bot은 slacker 라이브러리를 이용 할 수 없습니다. slacker.Error: invalid_auth 라는 에러가 발생하죠. slack.chat.post_message 을 대신 할 함수를 만들어서 문제를 해결 하실 수 있습니다. import requests def post_message(token, channel, answer): response = requests.post("https://slack.com/api/chat.postMessage", headers={"Authorization": "Bearer "+token}, data={"channel": channel,"text": answer} ) # slack.chat.p..