jeudi 25 décembre 2014

How to Retrive The Particular Book Details From Google My Library Through ID





<html>
<head>
</head>
<body>
<div id="content"></div>
<script>
function handleResponse(response) {
for (var i = 0; i < response.items.length; i++) {
var item = response.items[i];
// in production code, item.text should have the HTML entities escaped.
document.getElementById("content").innerHTML += "<br>" +item.volumeInfo.title+"<br>"+item.volumeInfo.imageLinks.thumbnail;
}
}
</script>
<script src="http://ift.tt/1CJDpwy"></script>
</body>
</html>



Here I am Trying to Get Details of The Book Through Specific ID from the Google Books Please Help in JavaScript and JSON





Aucun commentaire:

Enregistrer un commentaire