ArduinoHttpClient icon indicating copy to clipboard operation
ArduinoHttpClient copied to clipboard

Server variable

Open pcmill opened this issue 8 years ago • 1 comments

After a lot of fiddling with your library I found that the problem of my code was in the fact that I used the following as my server definition:

const char server[] = 'https://google.com";

Now I know that putting 'https://' in front of the server name will throw of the code. The right way of defining the server is:

const char server[] = 'google.com';

Is there a way to improve the documentation of this library to include this information? I would personally start at describing the API of the library in a more detailed fashion.

pcmill avatar Aug 08 '17 08:08 pcmill

@pcmill you could submit a pull request to submit documentation improvements.

sandeepmistry avatar Mar 20 '18 15:03 sandeepmistry