Skip to content

Instantly share code, notes, and snippets.

@heyseus1
Created January 31, 2017 04:05
Show Gist options
  • Save heyseus1/331406664ff08e5c4c4b712b7e2db590 to your computer and use it in GitHub Desktop.
Save heyseus1/331406664ff08e5c4c4b712b7e2db590 to your computer and use it in GitHub Desktop.
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