Getting data into MATLAB from HTTPS
Posted
by yuk
on Stack Overflow
See other posts from Stack Overflow
or by yuk
Published on 2010-04-09T20:04:57Z
Indexed on
2010/04/09
20:33 UTC
Read the original article
Hit count: 185
Anybody know if it's possible?
I'm trying to get the data by using the following code
url = 'https://cgwb.nci.nih.gov/cgi-bin/hgTracks';
params = {'org','Human','db','hg18','position','EGFR'};
urltxt = urlread(url,'get',params);
but get the error
??? Error using ==> urlread at 111
Error downloading URL. Your network connection may be down or your proxy settings improperly configured.
If I substitute https to http, it works, but I get "301 Moved Permanently" page with the above https-link.
The link in browser works properly in both cases (redirecting http request). The site does not require any authentication.
May be there are other ways than urlread?
© Stack Overflow or respective owner