Authored by whb

缓存java api

@@ -30,11 +30,11 @@ class Yohobuy @@ -30,11 +30,11 @@ class Yohobuy
30 // const API_OLD = 'http://api2.open.yohobuy.com/'; 30 // const API_OLD = 'http://api2.open.yohobuy.com/';
31 31
32 // /* 测试环境 */ 32 // /* 测试环境 */
33 -// const API_URL = 'http://testapi.yoho.cn:28078/';  
34 -// const API_URL = 'http://192.168.102.205:8080/gateway/'; // 先临时使用网关  
35 -// const SERVICE_URL = 'http://testservice.yoho.cn:28077/';  
36 -// const YOHOBUY_URL = 'http://www.yohobuy.com/';  
37 -// const API_OLD = 'http://test2.open.yohobuy.com/'; 33 + // const API_URL = 'http://192.168.102.205:8080/gateway/'; // 先临时使用网关
  34 + const API_URL = 'http://testapi.yoho.cn:28078/';
  35 + const SERVICE_URL = 'http://testservice.yoho.cn:28077/';
  36 + const YOHOBUY_URL = 'http://www.yohobuy.com/';
  37 + const API_OLD = 'http://test2.open.yohobuy.com/';
38 38
39 /* 预览环境 */ 39 /* 预览环境 */
40 // const API_URL = 'http://preapi.yoho.cn/'; 40 // const API_URL = 'http://preapi.yoho.cn/';
@@ -44,10 +44,10 @@ class Yohobuy @@ -44,10 +44,10 @@ class Yohobuy
44 // const API_OLD = 'http://api2.open.yohobuy.com/'; 44 // const API_OLD = 'http://api2.open.yohobuy.com/';
45 45
46 /* PC重构地址 */ 46 /* PC重构地址 */
47 - const API_URL = 'http://test.open.yohobuy.com/';  
48 - const SERVICE_URL = 'http://test.service.api.yohobuy.com/';  
49 - const YOHOBUY_URL = 'http://www.yohobuy.com/';  
50 - const API_OLD = 'http://api2.open.yohobuy.com/'; 47 +// const API_URL = 'http://test.open.yohobuy.com/';
  48 +// const SERVICE_URL = 'http://test.service.api.yohobuy.com/';
  49 +// const YOHOBUY_URL = 'http://www.yohobuy.com/';
  50 +// const API_OLD = 'http://api2.open.yohobuy.com/';
51 51
52 /** 52 /**
53 * 私钥列表 53 * 私钥列表
@@ -162,7 +162,6 @@ class Yohobuy @@ -162,7 +162,6 @@ class Yohobuy
162 if (!empty($data)) { 162 if (!empty($data)) {
163 $url = self::httpBuildQuery($url, $data); 163 $url = self::httpBuildQuery($url, $data);
164 } 164 }
165 -  
166 /* 开启缓存的情况 */ 165 /* 开启缓存的情况 */
167 if ($cache && USE_CACHE) { 166 if ($cache && USE_CACHE) {
168 // 先尝试获取一级缓存(master), 有数据则直接返回. 167 // 先尝试获取一级缓存(master), 有数据则直接返回.
@@ -32,13 +32,14 @@ class IndexData @@ -32,13 +32,14 @@ class IndexData
32 * @param string $client_type 32 * @param string $client_type
33 * @return array 33 * @return array
34 */ 34 */
35 - public static function getResourceData($content_code, $client_type = 'web') 35 + public static function getResourceData($content_code, $client_type = 'android')
36 { 36 {
37 // 构建必传参数 37 // 构建必传参数
38 $params = Yohobuy::param(); 38 $params = Yohobuy::param();
39 $params['content_code'] = $content_code; 39 $params['content_code'] = $content_code;
40 $params['client_type'] = $client_type; 40 $params['client_type'] = $client_type;
41 $params['client_secret'] = Sign::getSign($params); 41 $params['client_secret'] = Sign::getSign($params);
  42 +
42 return Yohobuy::get(Yohobuy::SERVICE_URL . self::URL_OPERATIONS_RESOURCE_GET, $params); 43 return Yohobuy::get(Yohobuy::SERVICE_URL . self::URL_OPERATIONS_RESOURCE_GET, $params);
43 } 44 }
44 } 45 }