当前位置: 代码迷 >> 综合 >> MALTAB websave(根据URL下载方法)以及 error 401(unauthorized)
  详细解决方案

MALTAB websave(根据URL下载方法)以及 error 401(unauthorized)

热度:70   发布时间:2023-12-28 19:30:39.0

第一部分:websave(根据URL下载方法)

url = 'https://gpm1.gesdisc.eosdis.nasa.gov/data/GPM_L3/GPM_3IMERGDF.06/2000/06/3B-DAY.MS.MRG.3IMERG.20000601-S000000-E235959.V06.nc4';
filename = 'E235959.V06.nc4';
username = '1111111';
password = '0000000';
options = weboptions('HeaderFields',{'Authorization',...['Basic ' matlab.net.base64encode([username ':' password])]});
websave(filename,url, options)

以上是单个URL的文件下载方法
如果看明白了,批量下载请移步:
MATLAB websave批量下载(URL)

第二部分:error 401(unauthorized)

我之前的代码总是报错:

url = 'https://gpm1.gesdisc.eosdis.nasa.gov/data/GPM_L3/GPM_3IMERGDF.06/2000/06/3B-DAY.MS.MRG.3IMERG.20000601-S000000-E235959.V06.nc4';
filename = 'E235959.V06.nc4';
options = weboptions('Username','1111111','Password','0000000');
outfilename = websave(filename,url,options);

错误使用 websave
服务器返回了状态 401 和消息 “Unauthorized”,以响应对 URL

原因我找了好久,最后在国外的MATLAB Answers 网站上找到了官方团队的回答:
How do I preemptively include a Basic Authentication header when working with “webread”/?"webwrite"?/“websave” in MATLAB R2019b?

大致意思是:
MATLAB 2019b之前的版本,如果我们在options中定义了username 和 password,MATLAB就会在基本身份验证中预先传递这些信息。然而为了安全考虑,如今改为,MATLAB首先发出一个没有凭证的请求,期望服务器返回一个“401 - Unauthorized”响应,并指定其支持的身份验证方法。然后用指定的身份验证方法发出第二个请求。
官方团队推荐在options里用’HeaderFields’ 来定义自己的授权头文件(Authentication header),并给了如下例子:

% Example username and password
username = 'myUser';
password = 'myPassword';% Manually set Authorization header field in weboptions
options = weboptions('HeaderFields',{'Authorization',...['Basic ' matlab.net.base64encode([username ':' password])]});
% Make a request using these options
webread('https://httpbin.org/hidden-basic-auth/myUser/myPassword', options)

这种方法在2019b之前的版本中也能用。
所以也就有了我在第一部分中的代码

  相关解决方案