From 1c441c506b364d824865b4dada4b85aba8a3b014 Mon Sep 17 00:00:00 2001 From: "sigonasr2, Sig, Sigo" Date: Tue, 26 Apr 2022 17:13:16 +0000 Subject: [PATCH] Include giitpod environment configuration --- sig/client.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sig/client.java b/sig/client.java index f6ed383..94bc39e 100644 --- a/sig/client.java +++ b/sig/client.java @@ -7,7 +7,7 @@ import sig.requests.GETRequest; public class client { public static void main(String[] args) { try { - GETRequest res = new GETRequest("https://postman-echo.com/get"); + GETRequest res = new GETRequest("https://postman-echo.com/get?foo1=bar1&foo2=bar2"); System.out.println(((HttpResponse)res.run()).body()); } catch (FailedResponseException e) { e.printStackTrace();