Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.
/ InstagramPHP Public archive

unOfficial PHP Instagram API implementation

Notifications You must be signed in to change notification settings

c0rz/InstagramPHP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Instagram PHP

This library is based on the Instagram web version. We develop it because nowadays it is hard to get an approved Instagram application. The purpose is to support every feature that the web desktop and mobile version support.

Dependencies

  • PHP >= 7.2

Code Example

$instagram = new Instagram();
$instagram->login();
$login = json_decode($instagram->login_account($username, $password));
echo $login;

Installation

git clone https://github.com/c0rz/InstagramPHP.git

Examples

See examples here.