Last active
August 29, 2015 14:03
-
-
Save scripting/75de472d0e3ccf183448 to your computer and use it in GitHub Desktop.
Minimal code for reading a river
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
<html> | |
<head> | |
<title>Minimal River Reader</title> | |
<script src="http://fargo.io/code/jquery-1.9.1.min.js"></script> | |
</head> | |
<body> | |
<script> | |
var theRiver; | |
function onGetRiverStream (updatedFeeds) { | |
theRiver = updatedFeeds; | |
} | |
$.ajax ({ | |
url: "http://rss.scripting.com/rivers/nytRiver.js", | |
dataType: "jsonp" | |
}); | |
</script> | |
</body> | |
</html> |
In case you don't know, the format it's reading is documented:
Dave, I have created a sample app at https://github.com/andysylvester/minimal-riverjs-reader using your code, see my post at http://andysylvester.com/2014/07/14/minimal-river-js-reader/ for more info. Thanks for posting this code!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From here you can build everything! :-)