instagram/client

此包已被 放弃 且不再维护。未建议替代包。

Instagram帖子客户端

1.0 2016-08-31 11:03 UTC

This package is auto-updated.

Last update: 2022-03-29 00:44:59 UTC


README

使用composer安装

composer require instagram/client

示例

use Instagram\Instagram;

require __DIR__.'/vendor/autoload.php';

$instagram = new Instagram();
$instagram->login([
    'username' => $_POST['username'],
    'password' => $_POST['password']
]);

$results = $instagram->upload([
    'caption' => $_POST['caption'],
    'tmp_image' => $_FILES['image']['tmp_name']
]);

var_dump($results);

许可证

此存储库遵循MIT许可证。