--
GitHub repository: https://github.com/scripting/river4
How to ask for help: http://scripting.com/2014/03/19/howToAskForHelpWithSoftware.html
---
You received this message because you are subscribed to the Google Groups "river4" group.
To unsubscribe from this group and stop receiving emails from it, send an email to river4+un...@googlegroups.com.
To post to this group, send email to riv...@googlegroups.com.
Visit this group at http://groups.google.com/group/river4.
To view this discussion on the web visit https://groups.google.com/d/msgid/river4/c30407fc-83ea-4b80-a5ab-e05f0b9dd1b3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to a topic in the Google Groups "river4" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/river4/KkZnmhDTnEQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to river4+un...@googlegroups.com.
To post to this group, send email to riv...@googlegroups.com.
Visit this group at http://groups.google.com/group/river4.
To view this discussion on the web visit https://groups.google.com/d/msgid/river4/CAM03%2Bfab_nTs30YiegehKuAbG%3DVOL%2BYdh8xsiuAbYJCfHX-F4w%40mail.gmail.com.
Jeffrey,
That could definitely be a problem if River4 could not access the feed at the URL with feed at the front. I remember seeing some examples of feeds with that a few years ago, but not recently.
Andy Sylvester
To view this discussion on the web visit https://groups.google.com/d/msgid/river4/887b7f8e-90d4-4eec-80d4-2d937ff813ff%40googlegroups.com.
var request = require ("request");
request ("feed://scripting.com/", function (error, response, body) {
if (!error && (response.statusCode == 200)) {
console.log (body.toString ());
}
else {
console.log (error.message);
}
});