package com.jilongda.common.component;
|
|
/**
|
* @author xiaochen
|
* @ClassName AliOss
|
* @Description
|
* @date 2020-04-15 10:23
|
*/
|
public class AliOss {
|
/**
|
* 请填写您的AccessKeyId。LTAI5tPbJsVfBZZTPqPe8A2r
|
*/
|
public static final String accessKeyId = "LTAI5tL1dE1DzT4ZYdDQZ8k7";
|
/**
|
* 请填写您的AccessKeySecret。
|
*/
|
public static final String accessKeySecret = "4SZBtTyLhOoYRcfMS4SVAtGz8ZnxRP";
|
/**
|
* 请填写您的 endpoint。
|
*/
|
public static final String endpoint = "oss-cn-shenzhen.aliyuncs.com";
|
/**
|
* 请填写您的 bucketname 。
|
*/
|
public static final String bucketName = "yandu66";
|
/**
|
* host的格式为 bucketname.endpoint
|
*/
|
public static final String host = "https://" + "yandu66.oss-cn-shenzhen.aliyuncs.com";
|
|
public static String dir = "eyes/";
|
|
}
|