From 9623b9b4d25adfd33b00b98c084ebe2ef808fb8d Mon Sep 17 00:00:00 2001 From: Waset <55943270+waset@users.noreply.github.com> Date: Mon, 18 Apr 2022 20:29:08 +0800 Subject: [PATCH] Pr dev1 (#7) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(douyin): ✨ 获取粉丝列表 * feat(douyin): ✨ 获取视频列表 --- src/Douyin/Fans.php | 32 ++++++++++++++++++++++++++++++++ src/Douyin/Video.php | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 src/Douyin/Fans.php create mode 100644 src/Douyin/Video.php diff --git a/src/Douyin/Fans.php b/src/Douyin/Fans.php new file mode 100644 index 0000000..6ee327f --- /dev/null +++ b/src/Douyin/Fans.php @@ -0,0 +1,32 @@ + $openid, + "cursor" => $cursor, + "count" => $count + ]; + + return $this->https_get($api_url, $params, $headers); + } +} diff --git a/src/Douyin/Video.php b/src/Douyin/Video.php new file mode 100644 index 0000000..b5872ea --- /dev/null +++ b/src/Douyin/Video.php @@ -0,0 +1,32 @@ + $openid, + "cursor" => $cursor, + "count" => $count + ]; + + return $this->https_get($api_url, $params, $headers); + } +}