Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Contact Third Iron at support@thirdiron.com and simply let us know that you are an Ex Libris Electronic Journap Portal library and would like to use this integration.  In response, we'll contact you with your API Link BrowZine Library ID and API Key.  You'll need this for step 2!

...

Code Block
languagejs
themeMidnight
var browzine = {
  api: "https://api.thirdiron.com/public/v1/libraries/XXXX",
  apiKey: "ENTER API KEY",
  serSol360CoreJournalBrowZineWebLinkText: "View Journal in BrowZine",
};

browzine.script = document.createElement("script");
browzine.script.src = "https://s3.amazonaws.com/browzine-adapters/360-core/browzine-360-core-adapter.js";
document.head.appendChild(browzine.script);

As an example, with library 221 BrowZine Library ID 221 (replacing the "XXX" in the second line) and API key d690efde-2f6f-124b-z87b-8df112f4f42f your code would look like this:

...