valentinmari/instagram

一个易于使用的PHP类,用于将图片发布到Instagram。

dev-master 2015-08-26 00:24 UTC

This package is not auto-updated.

Last update: 2024-09-28 18:00:05 UTC


README

使用官方API之外上传图片到Instagram

使用方法

namespace MyProject;
use VM\Instagram;

try {
    $api = new Instagram($user,$pass);

    $api->uploadPhoto('test.jpg','Hello world from PHP!');
    echo 'Ok!';
} catch (Exception $e) {
    echo 'Error';
}