掲示板 Forums - Interested in working with a renshuu API?
Top > renshuu.org > Developer corner
Page: 13 of 13
Getting the posts
Page: 13 of 13
Top > renshuu.org > Developer corner
Got the filtering handled.
Regarding your studypad, do you mind if I access your api endpoint to test that?
Got the filtering handled.
Regarding your studypad, do you mind if I access your api endpoint to test that?
I don't mind, please do.
New issue: server returns 500 when asking for /v1/schedule/{id}/list?pg=1&group=review_today and I already fully studied that schedule today.
Edit: it's broken for any group, not just review_today.
The 500 issue should be fixed (well, at least, I isolated the issue, patched it, and no more errors have come up since then).
Now the response looks like this: { "schedules": [] }
It doesn't seem to matter what group is queried. I'd expect to get the schedule back and a list of terms that may or may not be empty.
Hi, I have a question about the GET /word/search endpoint.
Is there currently any way to search for multiple words in a single API call?
Something like: GET /v1/word/search?values=猫,犬,学校
or an equivalent batch request.
If this isn’t currently supported, is batch searching something that may be considered for a future API update?
I don't know if this is "free renshuu pro" cool but, i made an immersion learning extension for chrome that works directly with renshuu.
You can load up any youtube video with captions (auto-generated works fine too) and it will underline the words you do not yet know (or are not listed in your selected renshuu list/schedule), you can click to get a definition, and then add them to be studied on renshuu or add them as "known words" the github goes into much more detail than is appropriate for a forum post, here is the link.
https://app.renshuu.org/forums/topics/11824/Interested_in_working_with_a_renshuu_API%3F
there are a few workarounds for "adding a known word" but it's explained pretty clearly in multiple places. y'all enjoy learning!
I was a little surprised that vocab TermUserData may have study_vectors with last_quizzed in the future (exactly equal to next_quiz); I think this occurs when the "when I learn a new kanji > lower all vocabulary with that kanji to level ..." user preference is selected (and triggers).
To satisfy some mild statistical curiosity, it would be nice to have a learned_on date in TermUserData, an indication of whether audio is available for a given term, and maybe whether renshuu would quiz me on the Kanji or Kana form of a given word (i.e. accounting for the "Study rare kanji" per-word setting, and kanji knowledge/settings). I can kind of guess based on the study_vectors state, but that guess would not necessarily always be correct.
Currently, I periodically pull some data via /list/all/{termtype}, which sorts and paginates terms based on some internal term id. If it were possible to sort this by last-changed date (i.e. when did something about this term/its user data last change: a sort of max(last_real_quiz, learned_on, edited_on) ), one could stop short of refetching every page every time. This is mostly theoretical; I'm not actually close to running into the API limits, so fetching everything every time just costs a bit of time.
According to the API, it seems impossible to reach 100% completion for N4 grammar. So far, I’ve used the Advanced Search and manually gone through all the official N4 grammar lists in the resources, but the API still shows 99 instead of 100. Any ideas how I could find what's still missing?