Webhook: Compute the hash property

Thanks, that’s pretty much what I’m doing. I’m going to see if changing the content type to text/html will solve the issue.

my handler works similar to this:

if (req.query && req.query["hub.challenge"]) {
//extract the properties and alias them.
 const { "hub.challenge": challenge, "hub.topic": topic } = req.query;
 const streamerId = topic.substr(topic.indexOf("=")+1, topic.length-1);
//check and make sure the record exists in my database using the user_id;
 doStuff();
//send back a response if If the record exists.
 return reply.code(200).send({ "hub.challenge": challenge });