Python으로 LINE Notify에 알림 보내기
3196 단어 파이썬요청LineNotify
그 때마다 구구나 과거의 소스를 보거나 하고 있으므로 여기에 방법을 적어 둡니다.
LINE Notify 토큰 획득
여기에서 계정을 등록하여 토큰을 받습니다.
htps : // 후 fy 보 t. 네. 메/그럼/
계정 생성 후 내 페이지 > 토큰 발급 > 토큰 이름, 토크룸 설정 > 발급
발행된 토큰을 복사해 둡니다.
파이썬에서 알림
pip install requests
가 끝나고 있으면 이하 코피페로 두세요.
Notify.pyimport requests
def main():
send_line_notify('てすとてすと')
def send_line_notify(notification_message):
"""
LINEに通知する
"""
line_notify_token = 'ここに発行したトークン'
line_notify_api = 'https://notify-api.line.me/api/notify'
headers = {'Authorization': f'Bearer {line_notify_token}'}
data = {'message': f'message: {notification_message}'}
requests.post(line_notify_api, headers = headers, data = data)
if __name__ == "__main__":
main()
실행하면 이런 느낌으로 통지됩니다 🔔
비고
pip install requests
가 끝나고 있으면 이하 코피페로 두세요.Notify.py
import requests
def main():
send_line_notify('てすとてすと')
def send_line_notify(notification_message):
"""
LINEに通知する
"""
line_notify_token = 'ここに発行したトークン'
line_notify_api = 'https://notify-api.line.me/api/notify'
headers = {'Authorization': f'Bearer {line_notify_token}'}
data = {'message': f'message: {notification_message}'}
requests.post(line_notify_api, headers = headers, data = data)
if __name__ == "__main__":
main()
실행하면 이런 느낌으로 통지됩니다 🔔
비고
Reference
이 문제에 관하여(Python으로 LINE Notify에 알림 보내기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/akeome/items/e1e0fecf2e754436afc8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)