mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-11-22 00:05:57 -05:00
cleaned up example
This commit is contained in:
parent
410ea0a743
commit
0c609e6fd9
@ -1,27 +1,10 @@
|
||||
require "httpx"
|
||||
|
||||
include HTTPX
|
||||
URLS = %w[https://nghttp2.org/httpbin/get] * 1
|
||||
|
||||
# supports HTTP/1 pipelining and HTTP/2
|
||||
URLS = %w[https://nghttp2.org https://nghttp2.org/blog/] * 51
|
||||
|
||||
|
||||
# supports HTTP/2 and HTTP/1 Keep-Alive
|
||||
# URLS = %w[http://nghttp2.org/httpbin/] * 102
|
||||
#
|
||||
# supports HTTP/1 pipelining
|
||||
# URLS = %w[https://github.com https://github.com/blog]
|
||||
|
||||
$HTTPX_DEBUG = true
|
||||
# responses = HTTPX.get(URLS)
|
||||
# puts responses.map(&:status)
|
||||
response = HTTPX.get(URLS.first)
|
||||
puts response.status
|
||||
# response = HTTPX.get(URLS.last)
|
||||
# puts response.status
|
||||
# response = HTTPX.get(URLS.last)
|
||||
|
||||
#responses.each do |res|
|
||||
# puts "status: #{res.status}, length: #{res.body.to_s.bytesize}"
|
||||
#end
|
||||
responses = HTTPX.get(*URLS)
|
||||
puts "Status: \n"
|
||||
puts Array(responses).map(&:status)
|
||||
puts "Payload: \n"
|
||||
puts Array(responses).map(&:to_s)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user