forgot the hashtags

This commit is contained in:
Camille Frantz 2025-06-05 05:09:27 -05:00
parent 8605f7f732
commit 1213e08c7b
Signed by: fyrfli
SSH Key Fingerprint: SHA256:0rb3/fMYNySVgUgOqOdmFnb+qhrk1C0Rc/Ak3AoyJug

2
app.py
View File

@ -17,5 +17,5 @@ if source_object.reason == "OK":
print(choices[0])
choice = choices[randint(0, len(choices) - 1)]
headers = {'Authorization': 'Bearer ' + post_token}
payload = {'status': f"{choice['quote']}\n\n - {choice['author']}", 'privacy': 'public'}
payload = {'status': f"{choice['quote']}\n\n - {choice['author']}\n\n#RandomQuote #quotes #quote #bot", 'privacy': 'public'}
response = post(post_endpoint, headers=headers, data=payload)