Client.php 374 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * This file is part of the apiadmin/tiktok.
  4. */
  5. namespace App\Libs\TikTok\MiniProgram\Capacity;
  6. use App\Libs\TikTok\Kernel\BaseClient;
  7. /**
  8. *
  9. */
  10. class Client extends BaseClient
  11. {
  12. protected $headerAccessToken = true;
  13. public function queryPermissionList()
  14. {
  15. return $this->httpGet('apps/v1/capacity/query_aweme_permission_list');
  16. }
  17. }