1234567891011121314151617 |
- from bs4 import BeautifulSoup
- import requests
- import time
- headers = {
- "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)
|