Skip to content
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.

aran112000/Instagram-Image-Upload-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Instagram Image Upload API (PHP)

A simple PHP class allowing images to be uploaded to Instagram. This is based upon the following: http://lancenewman.me/posting-a-photo-to-instagram-without-a-phone/

Example usage

<?php
// TODO; Your Instagram Username and Password will need to be added at the top of this file:
require('instagram_post.php');

$upload_image_filename = 'test.jpg'; // TODO; Link to your image from here
$image_caption = 'My example image caption #InstagramImageAPI'; // TODO; Add your image caption here

$ig = new instagram_post();
if ($ig->doPostImage($upload_image_filename, $image_caption)) {
  echo 'Success, image uploaded to your Instagram account';
} else {
  echo 'Failed to upload';
}

About

A simple PHP class allowing images to be uploaded to Instagram. This is based upon the following: http://lancenewman.me/posting-a-photo-to-instagram-without-a-phone/

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages