Update README.md

This commit is contained in:
McCloudS
2023-01-28 11:10:46 -07:00
committed by GitHub
parent f113654f73
commit 83b3814461

View File

@@ -19,21 +19,21 @@ Create the webhooks in Tautulli with the following settings:
Webhook URL: http://yourdockerip:8090 Webhook URL: http://yourdockerip:8090
Webhook Method: Post Webhook Method: Post
Triggers: Whatever you want, but you'll likely want "Playback Start" and "Recently Added" Triggers: Whatever you want, but you'll likely want "Playback Start" and "Recently Added"
Data: Under Playback Start, JSON Headers will be blank, JSON Data will be:" Data: Under Playback Start, JSON Headers will be blank, JSON Data will be:
{ ```{
"event":"played", "event":"played",
"file":"{file}", "file":"{file}",
"filename":"{filename}", "filename":"{filename}",
"mediatype":"{media_type}" "mediatype":"{media_type}"
}" }```
Similarly, under Recently Added: " Similarly, under Recently Added:
{ ```{
"event":"added", "event":"added",
"file":"{file}", "file":"{file}",
"filename":"{filename}", "filename":"{filename}",
"mediatype":"{media_type}" "mediatype":"{media_type}"
}" }```
It should look like: It should look like:
![Alt text](WebhookSettings.png?raw=true "Webhook Settings") ![Alt text](WebhookSettings.png?raw=true "Webhook Settings")