Created
September 11, 2014 17:25
-
-
Save mheadd/d8a906f11dd1826755e6 to your computer and use it in GitHub Desktop.
A phone application to get the current Rivercast status on the Schuylkill River
This file contains hidden or 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
<?php | |
answer(); | |
$rivercast = json_decode(file_get_contents("http://apify.heroku.com/api/rivercast.json")); | |
say("Hello."); | |
say("The current river cast on the Skew kill river is, " . $rivercast[0]->status . "."); | |
say("Happy recreating!"); | |
say("Goodbye."); | |
hangup(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment