Skip to content

Instantly share code, notes, and snippets.

@1syo
Last active December 18, 2015 03:29
Show Gist options
  • Save 1syo/5718814 to your computer and use it in GitHub Desktop.
Save 1syo/5718814 to your computer and use it in GitHub Desktop.
def book_title
book_title_lookup(@isbn, @isbn_typ)
end
private
def book_title_lookup(isbn, isbn_type)
response = @client.item_lookup do
category 'Books'
id isbn
id_type isbn_type
end
response.item.title
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment