You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The default meta fetcher is goob. I noticed that you're using the volumes list endpoint. This endpoint might return different information from the get endpoint.
As an example: curl https://www.googleapis.com/books/v1/volumes?q=isbn:978-2-505-11704-9 | jq '.items[0] | .id,.volumeInfo.title'
Describe the solution you'd like
I'd suggest for this meta fetcher to perform 2 requests to ensure the information are correct, first one to get the id of the volume, and a get to fetch the actual metadata.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The default meta fetcher is goob. I noticed that you're using the volumes list endpoint. This endpoint might return different information from the get endpoint.
As an example:
curl https://www.googleapis.com/books/v1/volumes?q=isbn:978-2-505-11704-9 | jq '.items[0] | .id,.volumeInfo.title'
curl https://www.googleapis.com/books/v1/volumes/TJLUzwEACAAJ | jq '.volumeInfo.title'
Describe the solution you'd like
I'd suggest for this meta fetcher to perform 2 requests to ensure the information are correct, first one to get the id of the volume, and a get to fetch the actual metadata.
The text was updated successfully, but these errors were encountered: