Kuaishou.php 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <?php
  2. namespace app\api\controller;
  3. class Kuaishou extends Base
  4. {
  5. public $appKey = 'ks698620896473026758';
  6. public $appSecret = 'cvbOgiVC6rSvPs0sBASfkg';
  7. public $signSecret = '71443462ca217e1c29425e7aabc257cc';
  8. public $msgSecret = '4fxDQv7tJKzIc1D7CNNe6A==';
  9. public $syncAPIClient;
  10. public $serverHost = "https://openapi.kwaixiaodian.com/";
  11. public $webSite = '1688';
  12. // public $access_token = 'ChFvYXV0aC5hY2Nlc3NUb2tlbhJwoKoSq1Hr4odNgoU9P9bwE23fS9T_KUXue57LmD9Nks584givB9Tqi_z05o7KDDvwj3ZAIBzly56LPLr-bekP61JOxIt8lMmuaOEODBndmTz5CrYQfiRIn-mbKwTYDPIXeJZLWN5nwwmaUP-G85DF7xoSOYuaoIMQQbq8-XpVu7XiJ6dNIiBtFILUcnKsia-OUP2G6Xja4G2Ub9uR4rKP7YVWTVe1BCgFMAE';
  13. public $access_token = 'ChFvYXV0aC5hY2Nlc3NUb2tlbhJwJsfgEcw8cYbOARym_nQvgdOKc9-8eKn_0pLGJ5VMMOdq7ql_yEETn74H-BFNDeSPq1ujcKxf55SaRrJ4O0WfT86MY-oqzU79eysFt2AcgOOXc49AcscyjKm3I8RTjzC1CIBTmaNdrtYxDTyc_kjjNxoSIEH75Kg-RaqlrUNstFhsUg4wIiDQ_BkNN4qQCet_XmgzWrAJmuoISlLGlgM6WJh5djxTpigFMAE';
  14. public $debug = false;
  15. public $code = "ae727ca7a93aa4434335c4d3e9a1773d169a36f6c65b965a726a1d3c8b85699e62cfd671";
  16. public function notify()
  17. {
  18. $data = $this->request->param();
  19. $url = $this->serverHost . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&code={$data['code']}&grant_type=authorization_code";
  20. $Alibabahelper = new Alibabahelper();
  21. $s = $Alibabahelper->curl_https_get($url);
  22. $s = json_decode($s, true);
  23. var_dump($data,$s);
  24. // return isset($s['access_token']) ? $s['access_token'] : '';
  25. }
  26. //
  27. public function getAccessToken()
  28. {
  29. // $url = $this->serverHost . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&code={$this->code}&grant_type=authorization_code";
  30. $url = $this->serverHost . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&grant_type=client_credentials";
  31. $Alibabahelper = new Alibabahelper();
  32. $s = $Alibabahelper->curl_https_get($url);
  33. $s = json_decode($s, true);
  34. return isset($s['access_token']) ? $s['access_token'] : '';
  35. }
  36. public function getCode()
  37. {
  38. }
  39. // api请求
  40. public function getOrderDetail()
  41. {
  42. //2315900153213958
  43. //2314700285800114
  44. $apiType = "open.order.detail";
  45. // $apiType = "open.seller.order.fee.detail";
  46. $method = 'get';
  47. $param = ['orderId'=>input('oid')];
  48. $arr['appkey'] = $this->appKey;
  49. $arr['version'] = 1;
  50. $arr['access_token'] = $this->access_token;
  51. $arr['timestamp'] = $this->getMillisecond();
  52. $arr['method'] = trim($apiType);
  53. $arr['param'] = $param ? json_encode($param) : '{}';
  54. $arr['signMethod'] = 'MD5';
  55. ksort($arr); // 排序
  56. $arr['sign'] = $this->getSign($arr, $this->signSecret);
  57. $apiInfo = str_replace('.', '/', $arr['method']);
  58. $url = $this->serverHost . $apiInfo;
  59. $s = static::apiSend($url,$arr,$method);
  60. $this->success('ok',[
  61. 'res'=>$s,
  62. 'token'=>$arr['access_token'],
  63. 'param'=>$param,
  64. 'api'=>$apiType ]);
  65. }
  66. public function getOrderList()
  67. {
  68. $apiType = "open.order.detail";
  69. $method = 'get';
  70. $param = ['orderId'=>input('oid')];
  71. $arr['appkey'] = $this->appKey;
  72. $arr['version'] = 1;
  73. $arr['access_token'] = $this->access_token;
  74. $arr['timestamp'] = $this->getMillisecond();
  75. $arr['method'] = trim($apiType);
  76. $arr['param'] = $param ? json_encode($param) : '{}';
  77. $arr['signMethod'] = 'MD5';
  78. ksort($arr); // 排序
  79. $arr['sign'] = $this->getSign($arr, $this->signSecret);
  80. $apiInfo = str_replace('.', '/', $arr['method']);
  81. $url = $this->serverHost . $apiInfo;
  82. $s = static::apiSend($url,$arr,$method);
  83. $this->success('ok',['res'=>$s]);
  84. }
  85. public function apiSend($url,$arr,$method)
  86. {
  87. $Alibabahelper = new Alibabahelper();
  88. if ($method == 'get') {
  89. $s = $Alibabahelper->curl_https_get($url. '?' . http_build_query($arr, '', '&'), array());
  90. } else {
  91. $s = $Alibabahelper->curl_https_post($url, $arr);
  92. }
  93. return json_decode($s, true);
  94. }
  95. public function getSign($params, $key) {
  96. $unSignParaString = $this->formatQueryParaMap($params, false);
  97. $signStr = (md5($unSignParaString . "&signSecret=" . $this->signSecret));
  98. return $signStr;
  99. }
  100. public function formatQueryParaMap(array $paraMap, $urlEncode = false) {
  101. $buff = "";
  102. ksort($paraMap);
  103. foreach ($paraMap as $k => $v) {
  104. if (null != $v && "null" != $v) {
  105. if ($urlEncode) {
  106. $v = urlencode($v);
  107. }
  108. $buff.= $k . "=" . $v . "&";
  109. }
  110. }
  111. $reqPar = '';
  112. if (strlen($buff) > 0) {
  113. $reqPar = substr($buff, 0, strlen($buff) - 1);
  114. }
  115. return $reqPar;
  116. }
  117. /*获取13位时间戳*/
  118. private static function getMillisecond() {
  119. list($t1, $t2) = explode(' ', microtime());
  120. return sprintf('%.0f', (floatval($t1) + floatval($t2)) * 1000);
  121. }
  122. }
  123. class Alibabahelper {
  124. function __construct() {
  125. }
  126. private function curl_get_contents($url, $data = array(), $https = false) {
  127. $results['error'] = '';
  128. $results['status'] = 0;
  129. $results['data'] = array();
  130. $user_agent = $_SERVER['HTTP_USER_AGENT'];
  131. $curl = curl_init(); // 启动一个CURL会话
  132. if (!empty($data) && is_array($data)) {
  133. curl_setopt($curl, CURLOPT_POST, TRUE);
  134. curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));
  135. curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
  136. }
  137. if ($https) {
  138. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0); // 对认证证书来源的检查
  139. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2); // 从证书中检查SSL加密算法是否存在
  140. curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); // 使用自动跳转
  141. }
  142. curl_setopt($curl, CURLOPT_URL, $url); // 要访问的地址
  143. curl_setopt($curl, CURLOPT_TIMEOUT, 30); // 设置超时限制防止死循环
  144. curl_setopt($curl, CURLOPT_HEADER, 0); // 显示返回的Header区域内容
  145. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); // 获取的信息以文件流的形式返回
  146. curl_setopt($curl, CURLOPT_USERAGENT, $user_agent); // 模拟用户使用的浏览器
  147. curl_setopt($curl, CURLOPT_AUTOREFERER, 1); // 自动设置Referer
  148. $results['data'] = curl_exec($curl); // 执行操作
  149. if (curl_errno($curl)) {
  150. $results['error'] = curl_error($curl); //捕抓异常
  151. }
  152. curl_close($curl); // 关闭CURL会话
  153. return $results['data']; // 返回数据
  154. }
  155. public function curl_https_post($url, $data) {
  156. return $this->curl_get_contents($url, $data, true);
  157. }
  158. public function curl_https_get($url) {
  159. return $this->curl_get_contents($url, array(), true);
  160. }
  161. }