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

Viewed 194

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 URL.

I am using Axios package at the backend (nodeJS).

var mediumRequest = await Axios.get('https://link.medium.com/C1hxgiphAcb') 
console.log(mediumRequest.request.res.responseUrl) 
>> 'https://rsci.app.link/C1hxgiphAcb?_p=c21634dc9a016ceeeb1d90f4e8' 

But, that is not the actual Final URL.

Am I missing something?

1 Answers
Related