Ayush Sharma wrote:I don't understand.. Help would be really Appreciated!
As @martinayotte advise start with the BasicHttpClient.
I suggest you try connecting to a know server to see how it works. See below for connecting to http://www.google.nl
I changed line 34 for my router credentials:
WiFiMulti.addAP("myroutername", "myrouterpassword");
I changed line 47 to:
http.begin("http://www.google.nl/index.html"); //HTTP
When running the sketch you should see this response from http://www.google.nl in the Arduino Serial Monitor:
[HTTP] begin...
[HTTP] GET...
[HTTP] GET... code: 200
<!doctype html><html itemscope="" itemtype="http://schema.org/WebPage" lang="nl"><head><meta content="text/html; charset=UTF-8" http-equiv="Content-Type"><meta content="/images/branding/googleg/1x/googleg_standard_color_128dp.png" itemprop="image"><title>Google</title><script>(function(){window.google=
<rest of response snipped>
Good luck!.