KsClient.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace app\service\fast_hand;
  3. /*
  4. * +----------------------------------------------------------------------+
  5. * | xiegeng admin system |
  6. * +----------------------------------------------------------------------+
  7. * | Administrator-13:25-2022-PhpStorm
  8. * +----------------------------------------------------------------------+
  9. * | Author: xiegeng <957723538@qq.com> |
  10. * | FILENAME: AccessToken.php |
  11. * +----------------------------------------------------------------------+
  12. */
  13. use GuzzleHttp\Client;
  14. class KsClient{
  15. public static function post($url,$data){
  16. static $client;
  17. if(!$client){
  18. $client=new Client;
  19. }
  20. $query=[
  21. 'app_id'=>config('kuaishou.appid'),
  22. 'access_token'=>AccessToken::get(),
  23. ];
  24. $data['sign']=_makeKsSgin($query,$data);
  25. $response=$client->post($url,[
  26. 'query'=>$query,
  27. 'json'=>$data,
  28. ]);
  29. $json=json_decode($response->getBody()->getContents(),true);
  30. return [
  31. ($json['result']??null)===1,
  32. $json['error_msg']??'请求失败',
  33. $json
  34. ];
  35. }
  36. public static function result($code,$msg){
  37. return json([
  38. 'result'=>$code,
  39. 'error_msg'=>$msg,
  40. ]);
  41. }
  42. }