[Koha-bugs] [Bug 32923] x-koha-embed must a header of collectionFormat csv

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Feb 14 15:14:52 CET 2023


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32923

--- Comment #10 from Jonathan Druart <jonathan.druart+koha at gmail.com> ---
Created attachment 146633
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=146633&action=edit
Bug 32923: Fix x-koha-embed from EHoldings/*/*

We were validating twice the input and it broke the x-koha-embed header.
I don't really know what's happening, but here is how to recreate the
problem:
1. Edit Koha/REST/V1/ERM/EHoldings/Packages/EBSCO.pm
2. Add the following lines in Koha/REST/V1/ERM/EHoldings/Packages/EBSCO.pm, in
the list method
    warn $c->req->headers->header('x-koha-embed');
3. curl -v -s -u koha:koha --request GET
http://kohadev-intra.mydnsname.org:8081/api/v1/erm/eholdings/ebsco/packages
--header "x-koha-embed: resources+count,vendor"

=> There is no vendor in the response
=> The warn displays "resources+count"

If you apply this patch you will notice that "vendor" is part of the
response and the warn displays "resources+count, vendor"

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list