161 B
161 B
Ruby
Below is an example of making an HTTP request to SITE_NAME from Ruby.
require 'net/http'
require 'uri'
Net::HTTP.get(URI.parse('PING_URL'))
Below is an example of making an HTTP request to SITE_NAME from Ruby.
require 'net/http'
require 'uri'
Net::HTTP.get(URI.parse('PING_URL'))