I\'m trying to integrate Medium blogging into an app by showing some cards with posts images and links to the original Medium publication.
From Medium API docs I can see
const MdFetch = async (name) => { const res = await fetch( `https://api.rss2json.com/v1/api.json?rss_url=https://medium.com/feed/${name}` ); return await res.json(); };
const data = await MdFetch('@chawki726');