Add authentication to ntfy

This commit is contained in:
Mike Cifelli 2023-07-03 12:23:34 -04:00
parent e854be1d3b
commit b1f0d91d75
Signed by: mike
GPG Key ID: 6B08C6BE47D08E4C
1 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@ eastPin = config['garage'].getint('east-pin')
westPin = config['garage'].getint('west-pin')
ntfy = config['push'].get('ntfy')
topic = config['push'].get('topic')
auth = config['push'].get('auth')
def main():
@ -70,7 +71,7 @@ def persistState():
def sendNotification():
requests.post(
url=f'https://{ntfy}/{topic}',
url=f'https://{ntfy}/{topic}?auth={auth}',
data='update'.encode(encoding='utf-8')
)