Is it possible for a static website to fetch Open Graph data using plain/vanilla (no library dependencies) JavaScript on the front end (such as by XMLHttpRequest)?
For example, if a webpage were to have a list of URLs, could a script be written that upon page load would loop through the URLs, submit a request for the title, description, and other og: meta data found in each URL’s HTML content, and upon receipt of those data, then create or edit elements in the DOM to display them to the user?
All I’m finding online are libraries and packages designed for back-end usage with NPM or the like. Thank you.