ThijsRay / podimo

https://podimo.thijs.sh
European Union Public License 1.2
46 stars 15 forks source link

Feat: Fetch more episodes and combine them in the RSS feed #38

Closed leonvsc closed 4 months ago

leonvsc commented 5 months ago

Hi!

It seems like since the last release you can only fetch 100 episodes instead of 500 episodes due to API changes from Podimo.

I did some research and if you change the offset in the API call to Podimo in the GetPodcasts function in client.py you can get different episodes.

As example: if you change the offset to 100 with a limit of 100, you get episode 100 till 200.

There should be a way to combine multiple requests to the API to fetch all the episodes and get them in the RSS feed. Maybe you have some ideas about it to implement this?

midasvo commented 5 months ago

Have also been running into this. I am implementing an offset queryparam so I can at least fetch histories.

jhogervorst commented 4 months ago

I've implemented this and opened a PR: https://github.com/ThijsRay/podimo/pull/40

leonvsc commented 4 months ago

It seems to be working after PR #40. Thanks @jhogervorst!

Issue can be closed.