NetworkApiConstant.cs 396 B

12345678910111213
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class NetworkApiConstant
  5. {
  6. //联网鉴权接口
  7. public const string SDK_AUTHENTICATION = "/v1/sdk/authentication";
  8. //上报数据接口
  9. public const string SDK_REPORT = "/v1/sdk/report";
  10. //获取个人中心包名
  11. public const string SDK_PACKAGENAME = "/v1/sdk/getInfoByChannel";
  12. }