12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace app\service\fast_hand;
- /*
- * +----------------------------------------------------------------------+
- * | xiegeng admin system |
- * +----------------------------------------------------------------------+
- * | Administrator-13:25-2022-PhpStorm
- * +----------------------------------------------------------------------+
- * | Author: xiegeng <957723538@qq.com> |
- * | FILENAME: AccessToken.php |
- * +----------------------------------------------------------------------+
- */
- use GuzzleHttp\Client;
- class KsClient{
- public static function post($url,$data){
- static $client;
- if(!$client){
- $client=new Client;
- }
- $query=[
- 'app_id'=>config('kuaishou.appid'),
- 'access_token'=>AccessToken::get(),
- ];
- $data['sign']=_makeKsSgin($query,$data);
- $response=$client->post($url,[
- 'query'=>$query,
- 'json'=>$data,
- ]);
- $json=json_decode($response->getBody()->getContents(),true);
- return [
- ($json['result']??null)===1,
- $json['error_msg']??'请求失败',
- $json
- ];
- }
- public static function result($code,$msg){
- return json([
- 'result'=>$code,
- 'error_msg'=>$msg,
- ]);
- }
- }
|