Conditions | 1 |
Paths | 1 |
Total Lines | 20 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function get( |
||
29 | int $advertiserId, |
||
30 | ?string $status, |
||
31 | ?string $title, |
||
32 | ?array $updateTimeRange, |
||
33 | ?string $businessType, |
||
34 | ?int $page, |
||
35 | ?int $pageSize |
||
36 | ): array { |
||
37 | return $this->requestApi( |
||
38 | 'GET', |
||
39 | 'https://ads.tiktok.com/open_api/v1.2/pages/get/', |
||
40 | [ |
||
41 | 'advertiser_id' => $advertiserId, |
||
42 | 'page' => $page, |
||
43 | 'page_size' => $pageSize, |
||
44 | 'status' => $status, |
||
45 | 'title' => $title, |
||
46 | 'update_time_range' => $updateTimeRange, |
||
47 | 'business_type' => $businessType |
||
48 | ] |
||
52 |