Compare commits

..

2 commits

Author SHA1 Message Date
64ab240a8a
fix: Need a space for the token to work 2024-11-06 21:52:06 -06:00
8a3e6fa35f
new: Support access tokens for ntfy 2024-11-06 21:45:19 -06:00
2 changed files with 7 additions and 0 deletions

View file

@ -23,3 +23,5 @@
enabled = false enabled = false
url = url url = url
topic = topic topic = topic
token = token

View file

@ -55,6 +55,11 @@ def send_notif(appstate, error=False):
continue continue
headers = {'Icon': 'https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Revanced-logo-round.svg/240px-Revanced-logo-round.svg.png', headers = {'Icon': 'https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Revanced-logo-round.svg/240px-Revanced-logo-round.svg.png',
'Title': encoded_title} 'Title': encoded_title}
try:
token = config[entry]['token']
headers['Authorization'] = 'Bearer ' + token
except:
continue
try: try:
req.post(f"{url}/{topic}", msg, headers=headers) req.post(f"{url}/{topic}", msg, headers=headers)
except Exception as e: except Exception as e: