Is it possible to check my progress in the pre-release chapters after they disappear?
-
I took a break from reading a bunch of series a while ago on the iOS app as they were being released, and I am now coming back to catch up. As the previews are no longer available, I will have to purchase the final versions. However, I do not remember how far along each book I was. Or if I already finished them and just never opened the first preview of the next volume. I was wondering if there was a way to view my progress anyways?
-
@dunkston Technically, yes. API returns progress list for all parts - expired or not. That progress is just a list of values like {"maxCompletion":1,"completion":0.5,"id":"xxxxxxxxxxxxxxxxxxxxxxxx","partId":"xxxxxxxxxxxxxxxxxxxxxxxx","userId":"xxxxxxxxxxxxxxxxxxxxxxxx"} (you can get them in your browser in dev tools under URL
https://api.j-novel.club/api/users/xx...
after opening JNC page). To organize it in a more human-readable the app combines that data with a separately-requested list of parts. However the official app only requests the list of non-expired parts so it can't really show you the progress for expired parts. My app shows all parts and their progress, but there's no iOS build. -
@_08 said in Is it possible to check my progress in the pre-release chapters after they disappear?:
However the official app only requests the list of non-expired parts so it can't really show you the progress for expired parts. My app shows all parts and their progress, but there's no iOS build.
I'm guessing someone could use an Android emulator on a PC to run your app, e.g. https://developer.android.com/studio/ if they use Windows.
-
@_08 Thank you so much! I really appreciate the quick response