You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
501 B
16 lines
501 B
<?php
|
|
|
|
/**
|
|
* Class Config
|
|
*
|
|
* Make configurations required by the sample.
|
|
* Users can run RunAll.php which runs all the samples after configuring Endpoint, AccessId, and AccessKey.
|
|
*/
|
|
final class Aliconfig
|
|
{
|
|
const OSS_ACCESS_ID = 'LTAIQQLT1q8t7LPn';
|
|
const OSS_ACCESS_KEY = 'JAN2kRlTSt7Rz2qg8Bx73YIkXwUKvz';
|
|
const OSS_ENDPOINT = 'http://oss-cn-shenzhen.aliyuncs.com';
|
|
const OSS_BUCKET = 'http://szcaee-web.oss-cn-shenzhen.aliyuncs.com';
|
|
const OSS_TEST_BUCKET = 'szcaee-web';
|
|
}
|
|
|