I’m building a tool to test different combinations of markup for generating link previews. e.g. oEmbed, Open Graph, Twitter Cards etc. As there are too many possible combinations of markup to generate static pages, I’m generating the pages with Netlify Functions.
I’m worried some websites will cache the results of a page, even if it has a different query string.
So instead of doing sending a request to:
https://mysite.com/.netlify/functions?oembed=true&opengraph=true
is it possible to do something like:
https://mysite.com/.netlify/functions/oembed-opengraph
?