Anime-Planet tracker
See original GitHub issueIssue/Request: Support for tracking manga on Anime-Planet
Other details: Currently, they have no public API. However, I believe a workaround could be done using the same method used for MAL’s current implementation.
At the top of a page for Anime-Planet, a token will be generated:
var TOKEN = '0b716xxxxxxxxxxxxxxxxxxxxxxxxxxx';
This token allows you to make requests like so:
https://www.anime-planet.com/api/list/status/manga/21385/0/0b716xxxxxxxxxxxxxxxxxxxxxxxxxxx
where 21385 is the manga ID and 0 is the current state of the manga.
If you want to update the manga’s current read state you can do so like this:
https://www.anime-planet.com/api/list/update/manga/15429/0/19/0b716xxxxxxxxxxxxxxxxxxxxxxxxxxx
where the 0 is a placeholder for # of chapters and 19 is the number of volumes
or like this:
https://www.anime-planet.com/api/list/update/manga/15429/211/0/0b716xxxxxxxxxxxxxxxxxxxxxxxxxxx
where 211 is the chapter # and 0 is the volumes.
Anime-Planet only supports tracking of volumes or chapters, so it would probably easier for tachiyomi to send requests for only the chapters.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:8
- Comments:7 (5 by maintainers)
@toprak When half life 3 comes out
@as280093 From a cursory glance at the MAL workaround, it shouldn’t be super difficult to implement. MAL uses a CSRF token to make the requests, which is acquired as a “session” token similar to Anime-Planet.
Besides, if inorichi won’t work on it, I’ll start working on it at some point. This issue is mostly for the sake of having the data easily accessible so I can debug in the future.
On that note, @inorichi are there any things you’re currently working on that might need this to wait a bit before me trying to implement?