This commit is contained in:
Omer Sabic 2024-06-13 10:58:14 +02:00
parent bec8892735
commit 83db716fcb

View File

@ -27,9 +27,9 @@ export const webhookRoutes = (fastify, _, done) => {
fastify.get("/youtube", async (req, reply) => {
// Check if the request contains the 'hub.challenge' query parameter
if (request.query.hub.challenge) {
if (req.query.hub.challenge) {
// Respond with the challenge to verify the subscription
return reply.send(request.query.hub.challenge);
return reply.send(req.query.hub.challenge);
} else {
// Handle other cases or errors
return reply.code(404).send("Not found");
@ -37,7 +37,7 @@ export const webhookRoutes = (fastify, _, done) => {
});
fastify.post("/youtube", async (req, reply) => {
const { headers, payload } = request;
const { headers, payload } = req;
const contentType = headers['content-type'];
// Check if the content type is 'application/atom+xml'