LINE Notify a facilité la mise en œuvre des notifications LINE, j'ai donc créé un programme qui s'exécute sur python.
Connectez-vous à Line Developer https://notify-bot.line.me/ja/
Accédez à Ma page en haut à droite de l'écran et émettez un jeton
Invitez votre compte LINE Notify dans le groupe sélectionné
Réécrivez le jeton d'accès et exécutez le programme
python line_notify.py hello
c'est tout
line_notify.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Utiliser LINE Notify depuis Python
"""
import urllib
import urllib2
import os,sys
url = "https://notify-api.line.me/api/notify"
message = sys.argv[1]
params = {"message":message}
params = urllib.urlencode(params)
req = urllib2.Request(url)
#Paramètre d'en-tête
req.add_header("Authorization","Bearer "+os.environ["LINE_ACCESS_TOKEN"])
#réglages des paramètres
req.add_data(params)
res = urllib2.urlopen(req)
r = res.read()
print(r)
curl -X POST -H'Authorization: Bearer <jeton d'accès> '-F' message = <message> 'https: // notify-api.line.me / api / notify
LINE Notify Official
https://notify-bot.line.me/ja/
Documentation officielle
https://notify-bot.line.me/static/pdf/line-notify-api.pdf
Recommended Posts