com.qiniu.common.ZoneReqInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qiniu-java-sdk Show documentation
Show all versions of qiniu-java-sdk Show documentation
Qiniu Cloud Storage SDK for Java
package com.qiniu.common;
import com.qiniu.util.Json;
import com.qiniu.util.UrlSafeBase64;
/**
* 封装了 accessKey 和 bucket 的类
*/
@Deprecated
public class ZoneReqInfo {
private final String accessKey;
private final String bucket;
public ZoneReqInfo(String token) throws QiniuException {
// http://developer.qiniu.com/article/developer/security/upload-token.html
// http://developer.qiniu.com/article/developer/security/put-policy.html
try {
String[] strings = token.split(":");
accessKey = strings[0];
String policy = new String(UrlSafeBase64.decode(strings[2]), Constants.UTF_8);
bucket = Json.decode(policy).get("scope").toString().split(":")[0];
} catch (Exception e) {
throw new QiniuException(e, "token is invalid");
}
}
public ZoneReqInfo(String accessKey, String bucket) {
this.accessKey = accessKey;
this.bucket = bucket;
}
public String getAccessKey() {
return accessKey;
}
public String getBucket() {
return bucket;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy