Developer PSA: labs.j-novel.club is your new friend!
-
Sweet. It was the additional "Bearer " I was missing in the authorization header. Thank you. I read about that in the first post so I thought they might have meant the authorization header was called "Bearer" and not that the authorization header was still authorization it just wanted a bearer in front of the token.
Thanks so much! I am gonna start working on replacing all of my old api calls with the new api ones one step at a time.
-
said in Developer PSA: labs.j-novel.club is your new friend!:
- Endpoints return protobuf-encoded responses by default. If you want to get JSON, add
format=json
to the query. If you want a text dump format,format=text
.
Does anyone know where you put format=json? My application already deserializes json, and I was wondering how to request labs.j-novel.club to pass back the response in json.
I tried having a header format with a value of json and that still returns protobuf so I am obviously missing where I pass this in the query.
- Endpoints return protobuf-encoded responses by default. If you want to get JSON, add
-
@malloc it's a query parameter as it says. So in the URL query, e.g.
/endpoint?format=json
-
@chocolatkey Thanks again. I am relatively new to web development like this so you have been very helpful.
-
@crimson-wise Don't forget you can use
"slim": true
in the login since you just need the token. -
I found out you guys had an API a few days ago, and thought I'd make use of it to play around with some new Python features.
A few questions/comments:
-
Is there a way to find out if a volume is still in the middle of releasing parts? Right now I'm just checking to see if the next volume exists. I don't want to make any assumptions based on the number of parts.
-
I noticed that the datetimes are different for the manga API calls. Specifically, the volume "publishing" field and the parts "expiration"/"launch" fields don't include milliseconds while everything else does. I had to add in some extra code to parse them out.
-
Ascendance of a Bookworm itself, V1, and V1P1 all share the same slug of "ascendance-of-a-bookworm". Is this known? It doesn't seem to be like that for any other title.
-
-
@tim_pkmn89 said in Developer PSA: labs.j-novel.club is your new friend!:
- Ascendance of a Bookworm itself, V1, and V1P1 all share the same slug of "ascendance-of-a-bookworm". Is this known? It doesn't seem to be like that for any other title.
I can answer this one; this is simply due to the way the original backend was programmed, where the slug is automatically generated based on the plain text title entered. Even if the title is changed afterward, the slug stays the same presumably since that slug is entered manually in other parts of the backend and it would be a pain to have to update all those fields if the slug were to change.
-
Have to also note about
/parts/$id/toc
not making sense, as it clearly should be/series/$id/toc
//series/$id/parts
.
Another thing I'd like to note is lack of parent IDs in models. When fetching/volumes/$id
I'd expect it to have aseriesId
field or similar, because sometimes I don't want to get all the data about series, just the ID to associate volume and series. Same applies to parts.
For example, to match old endpoint level of data just to show full novel information page the amount of requests is inadequate:const series = await get(`/series/${id}`); // Basic series metadata const volumes = await get(`/series/${id}/volumes`); // Volume list const partsPerVolume = new Map(); // Part list for (const volume in volumes) partsPerVolume.set(volume, await get(`/volumes/${volume.legacyId}/parts`));
We're looking at 2 + volume count requests. With
/parts
it can be reduced to constant 3 (and you still can do that in constant 5 by asking only first volume parts and getting toc afterward) requests, but there's a caveat: Parts don't currently reference their parent volume.
Of course we can do assumptions on slug generation and just parse it to extract volume or parse title, but it's an extremely dubious affair.Now onto the data that is present in old API, but is lacking in new one:
Series:
creator metadata
: Well, makes sense as it can change from volume to volume, so it's not a big deal.status
: It's not possible to know the current status (completely translated, hiatus, cancelled, etc)totalVolumes
: No way to know how many volumes series currently have, only way to know is to ask API to give us full list of volumes in a separate request.availableVolumes
: That one is a bit iffy, because in old API I've seen it being an unreliable information source.
Volumes:
JapanesePubDate
: Doesn't provide info when COO volume was released. (However variable name could be better ;) )approximatePageNumber
for novels. It's fairly inconsequential, but was a nice statistic to see.totalPartNumber
: No way to know how many parts volume contains. I'd even say it needs both total and currently released part counts.serieId
: As stated before - only way to know parent series is to ask API, and it will give full series information, even if developer needs just an ID.
Parts:
volumeId
: Same as before, only way to know is to ask API.seriesId
: Ditto.
And lastly, lack of relation expansion is hurting, even if by design, it should be cheaper both for user and server to just provide series info, it's volumes and parts in a singular request than to handle multiple requests. (But it needs to be on-demand, obviously)
I do have to say that new API is clearly better designed overall. But afformentioned issues with IDs and relation expansion inflate the request count far too much for no good reason.Regarding
?format=json
: Would be also helpful if server would respectAccept
header. I.e. if it saysapplication/json
that means it expects JSON in return. -
@yanrishatum said in Developer PSA: labs.j-novel.club is your new friend!:
Now onto the data that is present in old API, but is lacking in new one:
I can't speak for chocolatkey, but as a sysadmin, most of that data you're saying is missing in the new API simply doesn't exist for a large majority of our series/volumes/parts. There were many miscellaneous data fields added over the years, but we never went back to ensure it was all filled out or check if it's all accurate. With development on the new backend underway, a lot of those data fields simply won't exist anymore, so that would explain why you can't obtain it in the new API.
I think many of your grumbles have more to do with how data is stored in our current backend more than how the new API functions. Which is to say, once the new backend and database are up and running, I believe things will be much more logical with the new API as well.
-
@myskaros Totally fair, I don't care much about minor information, and main grumble is lack of parent IDs (I suppose those are stored in a separate relation tables as
series<->volume
/series<->part
/part<->volume
hence not listed, because that'd require extra queries?).
Didn't work databases much lately so I'm rusty, but I'm pretty sure automated update of volume/part counters can be done with relative ease.
Mainly I just don't like the idea of spamming server with multiple requests just to get full set of information to expand the relations, especially since it increases the latency at which said data can be shown (to be fair I can just show data as it comes in, and do a spinner for still loading parts, but still - far longer than one request that gets all the info) to user as well as just causes more strain on the server (one user is fine, but when there's lots of them - it adds up), and if mobile app would get more features such as more detailed novel information on a level of website - it can turn ugly. -
The old part data API is now "dead"
-
Can we get an endpoint for the calendar?
Alternatively, if the event data listed the id or slug of the associated part or volume, I could get the information that way (but with more calls). Currently the event data just lists data for the series, not the part or volume.
-
@falseaim
https://labs.j-novel.club/app/v1/events
is what you're looking for. Take a look at how calendar currently operates. You can pass itsort
,start_date
(ISO string),end_date
andskip
arguments. Uselaunch
sort and define start/end date to get pretty much exactly what calendar is displaying. Andskip
is obviously for pagination.
I.e. for example:
https://labs.j-novel.club/app/v1/events?sort=launch&start_date=2022-04-30T21%3A00%3A00.000Z&end_date=2022-05-31T21%3A00%3A00.000Z
.
Each event provides valid IDs as well as series information and thumbnail. -
@yanrishatum FYI date parameters can also be unix second timestamps. This applies anywhere in the new API
-
@yanrishatum still, having the volume ID attached to the event would be helpful to me. As far as I can tell, it's just the event and series IDs, and the former is the ID of the event, not the part or volume.
That said, I can work around it by playing with the slugs.
-
@crimson-wise The reason there's no volume ID attached to that even is that we would actually have to figure out the volume of each event based on slug lookup, because it's not "attached" in the database, and that's inefficient to do right now, especially for large calendar queries
-
Added the following to the list:
GET https://labs.j-novel.club/app/v1/volumes/{ID or slug}/skus // Volume's third-party purchase options GET https://labs.j-novel.club/app/v1/volumes/{ID or slug}/price // Volume's pricing on JNC POST https://labs.j-novel.club/app/v1/me/credits/convert // Convert credits to coins POST https://labs.j-novel.club/app/v1/me/coins/purchase // Purchase coins POST https://labs.j-novel.club/app/v1/me/coins/redeem/{ID or slug} // Redeem coins by volume slug or ID GET https://labs.j-novel.club/app/v1/me/coins/options // Get coin pricing options
Astute API users will notice that some more endpoints have been removed from the old API
-
Added GET https://labs.j-novel.club/app/v1/me/history. Required a
from
anduntil
query parameter with unix timestamps. Lowest acceptable value for either is1448841600
-
Is there any way to track when a manga volume was last updated or downloaded? For regular ebooks, /me/library has the lastDownload and lastUpdated fields, but I can't spot anything equivalent for manga.
-
It'd be great if the me/library's book.download object had a crc32 or any kind of hash. Even just the content length if nothing else; I tried HEADing the download link but there's no size in the headers even.