Gotchas
HTTPClient
Parsing Error
Be aware that the HTTPClient::connect method only passes a 64-byte path buffer to the HTTPClient::parseURL method. This will cause a HTTP_PARSE error if you use long URLs.
This can be easily fixed by changing the size of the path[64] array to a larger size in the HTTPClient::connect method.
Please log in to post comments.