Created
January 31, 2017 04:05
-
-
Save heyseus1/331406664ff08e5c4c4b712b7e2db590 to your computer and use it in GitHub Desktop.
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
require 'uri' | |
require 'net/http' | |
require 'colorize' | |
url = URI("") ### add api key URI | |
http = Net::HTTP.new(url.host, url.port) | |
http.use_ssl = true | |
request = Net::HTTP::Get.new(url) | |
response = http.request(request) | |
x = "error_code: Aria-assigned error identifier. 0 indicates no error." | |
y = "error_msg: Description of any error that occurred. OK if there was no error." | |
z = "version: The current system version." | |
while true | |
puts x.blue | |
puts y.blue | |
puts z.blue | |
puts response.read_body.green | |
sleep 30 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment