Skip to content

Instantly share code, notes, and snippets.

@jackrobotics
Created December 19, 2017 21:49
Show Gist options
  • Save jackrobotics/38619c85e1df28135521bb91064e36a4 to your computer and use it in GitHub Desktop.
Save jackrobotics/38619c85e1df28135521bb91064e36a4 to your computer and use it in GitHub Desktop.
#!/usr/local/bin/python
# -*- coding: utf-8 -*-
import requests
url = 'https://notify-api.line.me/api/notify'
token = '9IBnp37LVHj0a6W5HLq2dF7sqIjGyEVn2DQtpQq7wYv'
headers = {'content-type':'application/x-www-form-urlencoded','Authorization':'Bearer '+token}
msg = 'ทดสอบภาษาไทย hello'
r = requests.post(url, headers=headers , data = {'message':msg})
print r.text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment