This connector retrieves online book information with a given and validated ISBN from the OpenLibrary Books API and converts it into a structure, so applications can be build with already available book data and structures, instead of writing it manually. Also a dynamic JSON is retrieved as a Text from the generic OpenLibrary Books API so users can build their own structures for book representations.
This server action retrieves information in JSON format from a book found with the given ISBN, after it passed the CheckISBN action. It then deserializes the JSON into an ExampleBook structure, to represent the book information and returns it to the consuer module. This then can be used by the module for further devlopment.
Input
- isbn - Text
Output
- Book - ExampleBook Structure
Example inputs
Possible thrown exceptions
This server action retrieves information in JSON format from a book found with the given ISBN, after it passed the CheckISBN action. It then returns the JSON Text to the consumer module. This then can be used for further development. For example the module can create its own structures to represent the book information flexible in different ways.
- BookJSON - Text
Possibly thrown exceptions
This action simply checks if the given ISBN has more than 17 characters. If so the ISBN is not valid and isValid is set to False.
- isValid - Boolean
Why 17?
ISBN-13 has 13 digits. ISBN13 may have up to four hyphens, resulting in extra characters beside the 13 digits.
Why data type Text?
ISBN-13 may have hyphens, that can not be represented with Integer. An error will be thrown when tried.
ISBN-10 may have a leading 0 (Zero). With the Integer data type the leading 0 will be cut away: 012345 -> 12345. This will found no or a wrong book.
Structure representation of a book with several attributes.
bib_key - Text
- Given ISBN and key for the found book in Open Libray
title - Text
- Title of the book
author - Text
- Name of the book author
publisher - Text
- Name of the book publisher
publish_date - Text
- Date when the book was published
language - Text
- Language of the book
pages - Integer
- Number of pages in the book
info_url - Text
- Link to the information site of Open Library for the found book
preview_url - Text
- Link to a preview site of the book
thumbnail_url - Text
- Link to the book cover image. Can be used for an external image
isbn_13 - Text
- ISBN-13 representation of the book
isbn_10 - Text
- ISBN-10 representation of the book
Thrown when ISBN has not passed the CheckISBN action. The GetBookFromOpenLibrary* actions will when abort and throw the Exception.
Possilbe reasons:
Thrown when no book was not found.
Possible reasons: