Results 1 comments of Coder

我的解决办法是重写Downloader,在download方法中添加: ``` // 扩展获取重定向链接 List uris = requestContext.getHttpClientContext().getRedirectLocations(); if(CollectionUtils.isNotEmpty(uris)) { request.putExtra("redirectLocation", uris.get(0).toURL().toString()); } ``` 以此来获取重定向链接。