Table of Contents |
---|
Info |
---|
Changes coming in Q3 2023 See details at the bottom of this page |
New Authentication & URLs introduced Q2 2024 |
Object Report
The objects (images and audio files) report contains identifiers and references to the address where the objects can be downloaded. These references will be valid for a limited period of time. The typical use of the object services is as follows:
Authenticate (same for all services)
Request report (list) of updated objects
Parse list of updated objects (obtain URL to download service for each object)
Download actual objects from download service (one or more requests per object)
URL |
|
---|
|
|
|
GET
|
Request
headers
Authorization
Required
|
Date
Required
| |||
Method |
| ||
---|---|---|---|
Request |
| Required | The token acquired from the Authentication Service. Audience: Formated "Bearer …" |
Query |
| Required* | All data elements modified after this “cursor”. The cursor is in a not human readable format. |
| Required* | All data elements modified after this timestamp. The timestamp is on the format yyyyMMddHHmmss. | |
| Optional | See Pagination | |
Response |
| See Pagination | |
| See Pagination | ||
Response | XML (Object metadata) | ||
Returns |
| OK | |
| Bad Request | ||
| Unauthorized | ||
| Forbidden | ||
| Not Acceptable | ||
| Internal Server Error |
* One of the parameters “next” and “after” is required.
...
TYPE
, "Type of object". ly = Lydfil, ol = Omslag lille (width 120), os = Omslag stor (height 450), org = original omslag (This is the original image file sent to Bokbasen, so this is the one with the highest quality. This only exists for files sent to Bokbasen after February 2015, for older files this will be the same quality as os)REFERENCE
- short lived link to object available for download at download service. Reference is generated in a dynamic non predictable manner.Note that this database also contains historical objects, so that you can get objects for books that are deleted and sold out, so one should always check if the object is required for your system in your import process
The database is containing objects for over 150 000 titles, so a full dump on the database is very time consuming. When doing this, the biggest impact is choosing which types you actually need so you do not incur unecessary requests. E.g. if you are only loading images and you only need ORG, that will require about 150 000 download requests, but if you include all types for images that becomes 450 000 requests and trippling your execution time.
Object Download Service
Status | ||||
---|---|---|---|---|
|
Expand | |||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| |||||||||||||||||||||||||||||||||||||||||||||||
No longer need to download objects There is now no need to download resources and host yourself. Just use the public available URL that comes in ONIX directly in customer facing solutions.
The Object Download Service provides an endpoint for downloading binary object resources. The path to this service, as well as a unique identifier of the requested object, is returned from the object metadata service, which therefore must be called in advance. The unique identifier is only valid for a certain amount of time, as described in the table below, and can only be called by the same user (credentials) that requested the object export metadata service. The following details the parameters, example usage and different responses when using this service.
Object sampleRequest objects report and thereafter download service
Note: The
| |||||||||||||||||||||||||||||||||||||||||||||||
Info |
Changes
...
to
...
Cover Images are already being hosted with public available URLs
Audio Samples will be served with public available URLs (coming Q3 2023)
Changes to filename
In case you still want to fetch these files and host them your selves, please make some adjustments
...
.
Image Covers (Q1/2023)
Code Block |
---|
# In case you use this command (used when resource was protected/time-limited) curl -JO \ -H "Accept: application/octet-stream" -H\ "Authorization: Boknett TGT-1947-CEwDRwvOiIodyeov31sMnHTn7XxbZH15GDhJDdKWAq1rELH5wU-login.boknett.no" -H "Date: Thu, 12 Jun 2014 13:49:22 GMT" https://sr.bokbasen.io/coverimage/9783836574228/w360/jpg # CHANGE curl: Saved to filename 'jpg' (not as 'os.jpg') |
...
Code Block |
---|
# In case you use this command (used when resource was protected/time-limited) curl -JO \ -H "Accept: application/octet-stream" -H "Authorization: Boknett TGT-1947-CEwDRwvOiIodyeov31sMnHTn7XxbZH15GDhJDdKWAq1rELH5wU-login.boknett.no" -H "Date: Thu, 12 Jun 2014 13:49:22 GMT"\ https://sr.bokbasen.io/audiosample/9788202362270.mp3 # CHANGE curl: Saved to filename '9788202362270.mp3' (not as 'ly.mp3') |