Hey, I’ve set up a Reddit → Discord via webhook zap that is supposed to fire when a new post is found from certain search terms.
(subreddit:soccer) (url:streamable.com OR url:streamja.com OR url:clippituser.tv) (Arsenal OR Brighton OR (Manchester City) OR Southampton OR (Manchester United) OR Liverpool OR Everton OR Wolves OR (Crystal Palace) OR (Sheffield United) OR Tottenham OR Spurs OR Leicester OR Villa OR (West Ham) OR Norwich OR Bournemouth OR Burnley OR Watford OR Chelsea OR (Leeds United))
The webhook uses POST to send the following via the Discord webhook API
The following is sent with application/json headers
{
"embeds": d
{
"title": "{{Title}}",
"url": "{{PostURL}}",
"description": "\n{{Content}}\n\n",
"color": 28056,
"thumbnail": {
"url": "{{ImageURL}}"
},
"fields": d
{
"name": "-",
"value": "Posted at {{PostedAt}} by }{{Author}}](https://reddit.com/user/{{Author}})",
"inline": true
}
]
}
]
}
Testing the request with the ‘Data test’ successfully sends a blank embed to the discord channel and the zap throws no errors. The Reddit search query works as tested manually on Reddit and is within the character limit, but when a new post matching the query is made, nothing happens.
If there anything I can do to troubleshoot if both the JSON and search query are both fine, and no errors are thrown?