Questions tagged [medium.com-publishing-api]

For questions about the Publishing API of the online blogging platform Medium.com. The API is for programmatically managing content on the platform. Questions about the Medium.com platform itself or its usage are off-topic.

For questions about the Publishing API of the online blogging platform Medium.com. The API is for programmatically managing content on the platform. Questions about the Medium.com platform itself or its usage are off-topic.

Links:

54 questions
49
votes
11 answers

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

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 how to retrieve publications and create posts, but it doesn't mention retrieving…
Tomas Romero
  • 8,418
  • 11
  • 50
  • 72
32
votes
4 answers

Gist is not showing completely in Medium

When I try to embed gist in Medium it shows only the first 11 lines of the gist while code is longer inside gist. How can be this fixed?
NewTech Lover
  • 1,185
  • 4
  • 20
  • 44
11
votes
6 answers

Insert an Inline Code with Back Tics do not work in Medium.com

Following this Blog: https://medium.com/blogging-guide/how-to-insert-a-code-block-or-inline-code-into-a-medium-article-7b697bd12e0a It should be simple to add inline Code with Back Tics (`). However it does not work for me - it only displays the…
pme
  • 14,156
  • 3
  • 52
  • 95
7
votes
1 answer

Embedding Stackblitz Editor on Medium

I wrote this article and I'm attempting to embed the corresponding Stackblitz example. I click on share and select preview only and then paste the link into…
Ole
  • 41,793
  • 59
  • 191
  • 359
7
votes
1 answer

How can i get list of post based on your reading history - api medium

Its posible get list of post based on your reading history using the API Medium? I read the repo but i dont see anything reference of this requirement
David Hackro
  • 3,652
  • 6
  • 41
  • 61
5
votes
0 answers

Medium API to update a post / article

I looked at the Medium API, but I could only find an API to create a post or article on Medium. ​POST https://api.medium.com/v1/users/{{authorId}}/posts I want to update my existing post through an API, but I couldn't find one. Is there an API for…
Mayank
  • 399
  • 1
  • 3
  • 6
4
votes
0 answers

Medium applications for api access no longer available to free users?

I've created a medium application for API access a while ago, and I've been using it to connect medium accounts to my website and let them publish stories from my website. But it stopped working recently, and I can't access my app anywhere. I should…
AlexV
  • 116
  • 8
4
votes
2 answers

Error while trying to access public stories from Medium API on client side

I'm trying to access Medium's API to get a list of public stories from a user. However, I'm getting a CORS error when I try to access it on the client side. Here's the code axios.get(`http://medium.com/@ev/latest`).then((res)=>{ …
Saikiran
  • 756
  • 2
  • 11
  • 29
3
votes
2 answers

Discord.js send a medium post to a discord channel

I would like to try send medium's post links into discord channel. However i didn't find much resources online. I found some SDK library but that really seems to be outdated https://www.npmjs.com/package/medium-sdk. It is possible to use Medium API…
3
votes
2 answers

How to pull author info from Medium.com posts

I managed to retrieve all the basic info about a medium.com publication via JSON using file_get_contents("https://medium.com/publication_name/latest?format=json"); however is there a way to retrieve the name and photo of the author of the posts?
drake035
  • 3,955
  • 41
  • 119
  • 229
3
votes
0 answers

Medium authentication session across domains

Recently I realised that any medium.com-backed website (say https://medium.freecodecamp.com) persist my session across domains. Even if I only visit the domain for the first time, I still see I am logged in. Do you know what's the mechanics behind…
Yanis
  • 4,847
  • 2
  • 17
  • 17
2
votes
0 answers

How to send multipart/form-data for image binary with Python requests lib (with CRLF chars)?

I'm trying to upload a local image to the Medium /images endpoint (documented here). Their example request looks like: Host: api.medium.com Authorization: Bearer 181d415f34379af07b2c11d144dfbe35d Content-Type: multipart/form-data;…
2
votes
1 answer

How to access the Medium.com final URL from link.medium.com, using Axios npm

Accessing https://link.medium.com/C1hxgiphAcb on browser is redirecting to https://medium.com/javascript-in-plain-english/add-size-limit-to-github-actions-551c8fe9e7d7 From the backend, I am trying to figure out the final URL, given the shortened…
Satya Kalluri
  • 5,148
  • 4
  • 28
  • 37
2
votes
2 answers

I want to crawl all the posts on medium.com site

I want to crawl all the posts on medium.com site. The problem is that all posts on the medium.com site are not available for information. There are also often media sites where site url changes. I don't know how to solve this problem. I was not good…
inwha
  • 23
  • 4
2
votes
2 answers

get recommended posts from own profile through api

Using the Medium API, is it possible to get all of the posts I have recommended (or clapped)? Within my Medium profile, I can see the posts I have clapped (see image below). I wish to retrieve these through the API.
Josh Murray
  • 619
  • 5
  • 18
1
2 3 4