我根据官方里面的下面的代码,进行下载查看文件,将结果url放到浏览器查看,就报错了"error": "download token auth failed"。
String fileName = "七牛/云存储/qiniu.jpg";
String domainOfBucket = "http://devtools.qiniu.com";
String encodedFileName = URLEncoder.encode(fileName, "utf-8");
String publicUrl = String.format("%s/%s", domainOfBucket, encodedFileName);
String accessKey = "your access key";
String secretKey = "your secret key";
Auth auth = Auth.create(accessKey, secretKey);
long expireInSeconds = 3600;//1小时,可以自定义链接过期时间
String finalUrl = auth.privateDownloadUrl(publicUrl, expireInSeconds);
System.out.println(finalUrl);
报 download token auth failed ,说明生成 token 的算法是有问题的。可以把生成的链接给七牛提交个工单过来。