New OpenWRT Image. Does getAsynchronously() support https

I did read that wget now supports it. I am using getAsynchrously() as its none blocking but my gun doesn't seem to update thingspeak. Any ideas?

Yes, The new wget does support ssl, but that is nothing to do with HttpClient. HttpClient use curl underhook. The curl support ssl since previous firmware. HttpClient.cpp has curl ssl bug.

mearsy your issue on github is still open. I've pushed a pull request and hopefully we'll have it fixed in the coming nightly builds

Well remember Federico. I misread the release notes for the OpenWrt firmware and assumed it was fixed in that. I assume its an amendment to HttpClient.cpp

Ok, fixed httpclient does not support https · Issue #1860 · arduino/Arduino · GitHub
It will become available with the next nightly build starting tomorrow
The fix is that, if you need to use an https url but don't care about the validity of the SSL certificate, your code becomes

HttpClient client;
client.noCheckSSL();

My work around (before next nightly build) ;-

mv /usr/bin/curl  /usr/bin/curlbk
nano /usr/bin/curl
#!/bin/ash
/usr/bin/curlbk -k $1
chmod 755 /usr/bin/curl

Nightly build is now available at http://arduino.cc/en/Main/Software#toc4