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

前端 未结 11 1439
再見小時候
再見小時候 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:59

    With that REST method you would do this: GET https://api.medium.com/v1/users/{{userId}}/publications and this would return the title, image, and the item's URL. Further details: https://github.com/Medium/medium-api-docs#32-publications .

    You can also add "?format=json" to the end of any URL on Medium and get useful data back.

提交回复
热议问题