BasicKeyConstant.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.sd.cainiao.constant;
  2. public class BasicKeyConstant {
  3. /**
  4. * 测试环境请求url
  5. */
  6. public final static String DEV_URL = "https://linkdaily.tbsandbox.com/gateway/pac_message_receiver.do";
  7. /**
  8. * 测试环境appKey
  9. */
  10. public final static String DEV_APP_KEY = "618887";
  11. /**
  12. * 测试环境secretKey
  13. */
  14. public final static String DEV_SECRET_KEY = "v7350617cO0yg2h1931092o74dB42707";
  15. /**
  16. * 测试环境token,token是商家在物流云平台授权ISV后生成的授权码,目前需要商家配置在ISV的软件中
  17. */
  18. public final static String DEV_TOKEN = "Vk95a2orSXFRQkp6YWp5SVZ2RW5IeitxRTV6TU13TTk3aTJaRUdjWWVwOGlrMW1hdWpXUTVXVjA4RVRSYjc5Mw==";
  19. /**
  20. * 线上环境请求url
  21. */
  22. public final static String PROD_URL = "http://link.cainiao.com/gateway/link.do";
  23. /**
  24. * 线上环境appKey,物流云控制台查看
  25. */
  26. public final static String PROD_APP_KEY = "074351";
  27. /**
  28. * 线上环境secretKey,物流云控制台查看
  29. */
  30. public final static String PROD_SECRET_KEY = "OFHYq8l97KP128g7lM271C084KPWCB62";
  31. /**
  32. * 线上环境token,token是商家在物流云平台授权ISV后生成的授权码,目前需要商家配置在ISV的软件中
  33. */
  34. public final static String PROD_TOKEN = "N1lUUEFtWSt3S0k0ZU8wZlZhQmFYRDZXallBY01hb0E0NHk3WE0zWExYZUxKbi9ocXhGZ0E3UHN5d1FZYitWNQ==";
  35. }