KuaishouInterfaceConstant.java 2.1 KB

123456789101112131415161718192021222324252627
  1. package constant;
  2. public class KuaishouInterfaceConstant {
  3. public static final String AUTH_PATH = "/#/openapi/oauth";
  4. public static final String AUTH_TOKEN = "/rest/openapi/oauth2/authorize/access_token";
  5. public static final String REFRESH_TOKEN = "/rest/openapi/oauth2/authorize/refresh_token";
  6. public static final String ACCOUNT_REPORT = "/rest/openapi/v1/report/account_report";
  7. public static final String CAMPAIGN_REPORT = "/rest/openapi/v1/report/campaign_report";
  8. public static final String GTOUP_REPORT = "/rest/openapi/v1/report/unit_report";
  9. public static final String CREATIVE_REPORT = "/rest/openapi/v1/report/creative_report";
  10. public static final String CAMPAIGN_LIST = "/rest/openapi/v1/campaign/list"; // 广告计划信息
  11. public static final String GROUP_LIST = "/rest/openapi/v1/ad_unit/list"; //广告组信息
  12. public static final String CREATIVE_LIST = "/rest/openapi/v1/creative/list"; //创意信息
  13. public static final String CAMPAIGN_CREATE = "/rest/openapi/v1/campaign/create"; //创建广告计划
  14. public static final String AD_UNIT_CREATE = "/rest/openapi/v1/ad_unit/create"; //创建广告组
  15. public static final String DEEP_CONVERSION_INFOS = "/rest/openapi/v1/ad_unit/ocpc/conversion_infos"; //获取可选的深度转化类型
  16. public static final String VIDEO_UPLOAD = "/rest/openapi/v1/file/ad/video/upload"; //视频文件上传
  17. public static final String VIDEO_GET = "/rest/openapi/v1/file/ad/video/get"; //视频文件获取
  18. public static final String IMAGE_GET = "/rest/openapi/v1/file/ad/image/get"; //图片文件获取获取地域信息图片文件获取
  19. public static final String REGION_LIST = "/rest/openapi/v1/region/list"; //图片文件获取获取地域信息图片文件获取
  20. public static final String IMAGE_UPLOAD = "/rest/openapi/v1/file/ad/image/upload"; //视频文件上传
  21. public static final String APP_CREATE = "/rest/openapi/v1/file/ad/app/create"; //创建应用
  22. public static final String APP_LIST = "/rest/openapi/v1/file/ad/app/list"; //创建广告获取应用列表
  23. }