123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace loyalsoft;
- /**
- * 火山引擎相关配置文件
- * @author gwang
- */
- class Volcengine_config {
- //put your code here
- const AppName = "言灵世界";
- const AppId = "237519";
- const AppKey = "c0a92b022fc76e56d0ab0e66f6e99a48";
- const URLScheme = "rangersapplog.bf76a59a23857001";
- /**
- * 上报一条记录
- */
- public const ReportOneURL = "https://mcs.snssdk.com/v2/event/json";
- /**
- * 上报多条记录(max=20)
- */
- public const ReportListURL = "https://mcs.snssdk.com/v2/event/list";
- /**
- * 请求的headers
- */
- public static function Headers() {
- return array('Content-Type' => 'application/json',
- 'X-MCS-AppKey' => self::AppKey);
- }
- }
|