Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
2k views

Ajax with JQuery: 200 ok, but not “success”

I'm trying to use AJAX to send a query to Google Books and display the results on my website. I'm using JQuery to send the request and handling the response, like so: var query = [formatted input ...
2
votes
1answer
58 views

Encoding a JSONP <script src = Request

I am attempting to access Google Books in order to an ISBN Code to get details of a book, I have a number of problem, which are: A) I am trying to assemble a script request e.g. with the ISBN code ...
2
votes
6answers
188 views

How to improve the speed of this code?

I'm trying to import all googlebooks-1gram files into a postgresql database. I wrote the following Java code for that: public class ToPostgres { public static void main(String[] args) throws ...
2
votes
1answer
267 views

How do I programmatically determine a Google Account USERID token from a Gmail address without credentials?

I'm developing something with the Google Books API, but I think this can be generalized across many of Google's APIs. Suppose I have an app that's got a social aspect where I can add friends and see ...
2
votes
4answers
631 views

Ruby on Rails 3 and Google Book Search

I'm trying to get started using the Google Data API for Google Book Search in my Ruby on Rails 3 application, and I don't even understand how to get started. What gems do I need? What do I need to do ...
2
votes
3answers
928 views

How to get book metadata?

My application needs to retrieve information about any published book based on a provided ISBN, title, or author. This is hardly a unique requirement---sites like Amazon.com, Chegg.com, and even ...
2
votes
1answer
379 views

Google Books API - Getting Book Ratings?

I cannot find a way to get a Book's Ratings through the Books API provided by Google. All I figured out is how to obtain search listings, which do not include ratings and description. Help would ...
1
vote
0answers
113 views

Searching and storing book titles from APIs like Amazon or Google Books

If a user on my site wants to add a book, can I do the following: 1)Send the text typed by the user to Amazon/Google Books API 2)If the users thinks thats the right book, Can I store the title as ...
1
vote
1answer
320 views

want to access google books from android app

I am pretty new to android; I would like to access google books from my android app. Can anyone provide any pointers, sample code, or advice on how to get going here? Thanks!
1
vote
1answer
62 views

Clubbing reprints of a book with different ISBNs

I am using Google Books API to let a user search for a particular book and display the results. The problem is that different editions of the same book have different ISBNs. Is there any way to club ...
1
vote
2answers
465 views

How can I replace the ISBN with the Google Books ID in a MARC file, using Perl?

I've got a file with some book data in MARC format, of which some lines are ISBNs. I'd like to replace these lines with the Google Books ID of that ISBN, if it exists. Here's the code so far, which ...
0
votes
0answers
10 views

How can I get books in only one language using the Google Books API

Google's Book API provides an option to receive books in only one language. However, it's does not seem to work. (Or I'm clueless, always a possibility). The parameter is apparently langRestrict, see ...
0
votes
0answers
34 views

Google Books API not returning book description

I am making use of the Google Books Java API to retrieve books by ISBN. Currently I have a small test harness developed based on the google example code: ...
0
votes
0answers
129 views

Connection to google books API

I have spent a lot of time trying to get this program to work I have had issue after issue. I am pretty sure I have narrowed my errors down to the jar files. My code is as follows: package ...
0
votes
1answer
67 views

How to get reviews from Google Books API with PHP

I'm struggeling with getting reviews back from the Google Books API in PHP. I've tried almost everything, but without much luck so far. To try this, I've started with the examples provided by Google ...
0
votes
0answers
9 views

Finding the page containing a term using Google Books API/Any other ebook storage

I would like to create a small application in which I can input a book's ISBN and a word and it shows me which pages/lines this word appears in this book. I would like to do that using Google API, ...
0
votes
1answer
88 views

How to sort search result in reverse order of publication date in Google books?

Google books provide sorted by date option on the left column to sort searched books. But the result seems that publication date is in descending order ( from latest to oldest). This may not be fit ...
0
votes
1answer
78 views

Making title available on google books

Does anyone know if you can programatically upload books onto google books? Is there an API that allows you to upload? We have registered as a publisher so we can maunally upload the books but we ...
0
votes
1answer
59 views

Submit book to Google eBookStore

This might be the wrong location for this question but is there an API to submit books to Google eBookStore? We have a client that want's to allow users to publish their own books to the ebookstore ...
0
votes
0answers
77 views

503 error from Google Books API when accessed from EC2

On my Amazon EC2 instance: ~$ curl -XGET https://www.googleapis.com/books/v1/volumes?q=Mark+Twain { "error": { "errors": [ { "domain": "global", "reason": "unknownLocation", ...
0
votes
1answer
131 views

Process Google Bookmarks Feed in SimplePie

I want to process my Google Bookmarks feed using SimplePie. I can access a feed at https://www.google.com/bookmarks/find?q=&output=rss&num=10000 But I obviously will need to be logged in for ...
0
votes
1answer
91 views

Solr Image Result

I am new to Solr for providing search results. I am planning to implement something similar to google books, which highlight search words in result-set and make an image from result ... So I need to ...
0
votes
1answer
441 views

Sample python code for using Google books api

I m working on a library project where users can add books into their library. So I tried finding some sample code that will help me get started but could not find any. So I want to know how to use ...
0
votes
3answers
746 views

SyntaxError using gdata-python-client to access Google Book Search Data API

>>> import gdata.books.service >>> service = gdata.books.service.BookService() >>> results = service.search_by_keyword(isbn='0434003484') Traceback (most recent call last): ...