How to retrieve Medium stories for a user from the API?

前端 未结 11 1540
再見小時候
再見小時候 2021-01-30 04:06

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

11条回答
  •  误落风尘
    2021-01-30 04:41

    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');

提交回复
热议问题