from bs4 import BeautifulSoup
import requests
import time
#h7QtBUeJLTrYOY89sMqgNEKcM8qlwbkI3olYgGDghb4 
#
headers = {
#        "Authorization": "Bearer " + "WekCRfnAirSiSxALiD6gcm0B56EejsoK89zFbIaiZQD",
#        "Authorization": "Bearer " + "h7QtBUeJLTrYOY89sMqgNEKcM8qlwbkI3olYgGDghb4",
        "Authorization": "Bearer " + "t35vhZtWNgvDNWHc3DJh0OKll3mcB9GvC8K2EAkBug2",

        "Content-Type": "application/x-www-form-urlencoded"
}
 

params = {"message": "test..test.."}   
r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
print(r)