# Sortie d'un message de Raspberry Pi vers Line. De la ligne Notify Sélectionnez Ma page. Obtenez un jeton d'accès.
Cliquez sur Publier Si vous obtenez un jeton
LineNotify.py
'''
Line Notify Test Program
'''
def LinePrint(msg):
import requests
token='{Jeton obtenu}'
headers = {'Authorization': 'Bearer %s'%token, }
files = {'message': (None, msg),}
r = requests.post('https://notify-api.line.me/api/notify', headers=headers, files=files)
print(r,r.text)
LinePrint("\nhello world")
Quand tu cours Vous pouvez ignorer les messages vers la ligne.
Recommended Posts