app.get('/opengraph', async (req, res) => {
    const data = await getOpengraphData(req.query.url);
    respondWithData(res, data);
});