Not all artist recordings browses in api

i use rust api wrapper for musicbrainz GitHub - oknozor/musicbrainz_rs: A wrapper around the musicbrainz API and not all artist recordings browses by Recording::browse


how can i fix it?

For browse requests there is a pagination. By default a browse request returns 25 results. This can be increased with the limit parameter to a maximum of 100. To return additional results another request can be made with the offset parameter. See the documentation at

https://musicbrainz.org/doc/MusicBrainz_API#Browse

I can’t tell you how to do the pagination with the rust library, though. You should consult the documentation of that library.

3 Likes

Actually it looks like that library does not support pagination:

Maybe you can provide a patch to add that functionality?

2 Likes

Maybe the existing PR is already sufficient? Or it is only for search requests:

(I’m neither using the library nor do I speak rust)

1 Like