DashBoard does support HTTPS. It is quite likely that the Google Doc URL is providing something other than a simple web page or data stream to download.
Here is an example:
function cb(results)
{
ogscript.debug(results);
}
ogscript.asyncPost('https://httpbin.org/', null, cb);
The variable "results" will be null if the post was not successful.
There is also a version that can return more detailed information in a JSON object.
function cb(results)
{
if (results != null)
{
ogscript.debug(results.responseCode);
ogscript.debug(results.contentType);
ogscript.debug(results.url);
ogscript.debug(results.value);
ogscript.debug(results.bytes);
}
}
ogscript.asyncPost('https://httpbin.org/', null, cb, true);
#DashBoard