valentinmari/instagram

An easy-to-use PHP Class for post images to Instagram.

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

This package is not auto-updated.

Last update: 2024-04-27 15:53:05 UTC


README

Upload images to Instagram w/o official API

Usage

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';
}