Created
April 6, 2014 00:09
-
-
Save baniol/9999720 to your computer and use it in GitHub Desktop.
google drive api, spreadsheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> | |
</head> | |
<body> | |
<script> | |
// https://coderwall.com/p/duapqq | |
$.getJSON("http://cors.io/spreadsheets.google.com/feeds/list/0Agc0An9fYk3LdFN0MUhFX1drdmx4aU9WOThDeVdpRlE/od6/public/values?alt=json", function(data) { | |
console.log(data); | |
//first row "title" column | |
// console.log(data.feed.entry[0]['gsx$title']['$t']); | |
}); | |
</script> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment