randsx / instagram-downloader
PHP 包,用于下载 Instagram 上的图片或视频
v1.0
2020-12-02 14:32 UTC
Requires
- php: >=7.1
- guzzlehttp/guzzle: ^7.0
README
一个用于下载 Instagram 上图片或视频的包。
安装
使用 composer 安装
composer require randsx/instagram-downloader
用法
use RandsX\InstagramDownloader\InstagramDownloader; $instagram = new InstagramDownloader;
首先设置你想要下载图片/视频的 URL,如下所示。
- 方法 1
$instagram = new InstagramDownloader("https://instagram.com/link");
- 方法 2
$instagram = new InstagramDownloader; $instagram->setURL("https://instagram.com/link");
如果你想知道你定义的 URL 的图片/视频类型,可以这样操作
$instagram->getType(); // Returned "image" or "video"
然后,如果你想获取下载链接,可以这样操作
$instagram->getDownloadLink();