With this PHP library, you can use all features of the instagram Mobile App
Demo
·
Feedback
Türkçe doküman için tıklayın
🌟🌟 INSTAGRAM PRO 🌟🌟
patreon: https://www.patreon.com/hasokeyk
Coin | Wallet |
---|---|
ETH | 0x2091be5b1840b10a841376c366ec0475771b4ec8 |
BTC | 12Set9KZGXWD64pbeGsdqZCJZofxyK77LP |
Feature | Instagram Pro | |
---|---|---|
🌟 Use Proxy | ❌ | ✔️ |
Login | ✔️ | ✔️ |
Two Factor Login | ✔️ (Just SMS) |
✔️ (SMS,Whatsapp,Duo,3th App) |
🌟 Register | ❌ | ✔️ |
🌟 Add Duo | ❌ | ✔️ |
🌟 Facebook Remover | ❌ | ✔️ |
🌟 Change Password | ❌ | ✔️ |
🌟 Change Email | ❌ | ✔️ |
🌟 A2F Disable | ❌ | ✔️ |
Get My Inbox | ✔️ | ✔️ |
Send Message (Confetti,Heart,Gift Box) | ✔️ | ✔️ |
Send Photo Message | ✔️ | ✔️ |
Send Link Message | ✔️ | ✔️ |
Send Story Message | ✔️ | ✔️ |
Send Post Message | ✔️ | ✔️ |
Get User Info | ✔️ | ✔️ |
Get User Post | ✔️ | ✔️ |
Get User Story | ✔️ | ✔️ |
Share Post | ✔️ | ✔️ |
🌟 Share Reels | ❌ | ✔️ |
🌟 Share Story | ❌ | ✔️ |
🌟 Delete Post | ❌ | ✔️ |
🌟 Get User Statistic | ❌ | ✔️ |
🌟 Get Post Statistic | ❌ | ✔️ |
🌟 (New) Post Pinning | ❌ | ✔️ |
🌟 (New) Post Unpinning | ❌ | ✔️ |
🌟 (New) Story Like | ❌ | ✔️ |
🌟 (New) Story Unlike | ❌ | ✔️ |
🌟 (New) Change Status | ✔️ | ✔️ |
🌟 (New) Change Status Reply | ✔️ | ✔️ |
Get Followers | ✔️ | ✔️ |
Get Followings | ✔️ | ✔️ |
🌟 Get Fake Followings | ❌ | ✔️ |
🌟 Get Fake Followers | ❌ | ✔️ |
🌟 Get Instagram Score | ❌ | ✔️ |
Get Notifications | ✔️ | ✔️ |
Change Avatar | ✔️ | ✔️ |
Follow User | ✔️ | ✔️ |
UnFollow User | ✔️ | ✔️ |
Like Post | ✔️ | ✔️ |
Unlike Post | ✔️ | ✔️ |
Save Post | ✔️ | ✔️ |
Accept Follow Request | ✔️ | ✔️ |
🌟 Don't Follow Me | ✔️ | ✔️ |
Get Pedding Message | ✔️ | ✔️ |
Get My Collections | ✔️ | ✔️ |
Create Collection | ✔️ | ✔️ |
Edit Collection | ✔️ | ✔️ |
Del Collection | ✔️ | ✔️ |
Send Comment To Post | ✔️ | ✔️ |
Delete Comment To Post | ✔️ | ✔️ |
Get Hashtag Info | ✔️ | ✔️ |
🌟 Get My Secret Followers | ✔️ | ✔️ |
🌟 Who Viewed My Profile | ✔️ | ✔️ |
Get Me Most Seen Feed | ✔️ | ✔️ |
Get Me Least Interacted With | ✔️ | ✔️ |
This project is made in PHP library of all instagram mobile app features. This library can send exactly same queries like mobile app and returns server responses.
Please read carefully.
- You must have to "composer" application on your PC. For installation https://getcomposer.org/download/
- PHP 7.4 or above
Give permission to the following files and folders with chmod 777.
/vendor/hasokeyk/
- you must determine your root(working) folder after that open console (
terminal )
composer require hasokeyk/instagram
- Firsty download repository
git clone https://github.com/hasokeyk/instagram.git
- Use the command below to download the required libraries.
composer install
You must login before each operation. In your first login operation, the system will be cached and your operation will run faster.
<?php
use Hasokeyk\Instagram\Instagram;
require "/vendor/autoload.php";
$username = 'username';
$password = 'password';
$instagram = new Instagram($username,$password);
$login = $instagram->login->login();
if($login){
echo 'Login success';
}else{
echo 'Login Fail';
}
//LOGIN CONTROL
$login_control = $instagram->login->login_control();
if($login_control){
echo 'Login True';
}else{
echo 'Login False';
}
//LOGIN CONTROL
In your first login attemp, if two factor authorization are enabled, instagram will send you a code. If you enter the code into the input area, yout login operation will be completed automatically. After your next logins, if yout IP is not changed, you can login without asking code.
<?php
use Hasokeyk\Instagram\Instagram;
require "/vendor/autoload.php";
$username = 'username';
$password = 'password';
$instagram = new Instagram($username, $password);
if(isset($_REQUEST['two_factor_login_code'], $_REQUEST['two_factor_identifier']) and !empty($_REQUEST['two_factor_login_code']) and !empty($_REQUEST['two_factor_identifier'])){
$code = trim($_REQUEST['two_factor_login_code']);
$token = trim($_REQUEST['two_factor_identifier']);
$two_factor_login = $instagram->login->two_factor_login($code, $token);
print_r($two_factor_login);
}else{
$login = $instagram->login->login();
if(isset($login->two_factor_identifier) and !empty($login->two_factor_identifier)){
echo <<<END
<form action="" method="post">
<input type="hidden" name="two_factor_identifier" value="$login->two_factor_identifier">
<input type="text" name="two_factor_login_code">
<input type="submit" value="Login">
</form>
END;
}
else if($instagram->login->login_control()){
echo 'Login Success';
}
else{
echo 'Login Fail';
}
}
When you run the below code, you will get last 50 posts of user you are logged into. If you want another accounts posts get_user_posts('hasokeyk') please use this.
<?php
use Hasokeyk\Instagram\Instagram;
require "../vendor/autoload.php";
$username = 'username';
$password = 'password';
$instagram = new Instagram($username,$password);
$login = $instagram->login->login_control();
if($login){
$user_posts = $instagram->user->get_user_posts();
print_r($user_posts);
}else{
echo 'Login Fail';
}
Asım Murat YILMAZ - GITHUB
You can download and use it as long as this project is under development. If used for other purposes The person who wrote the codes is not responsible. By downloading and using this project, you agree to this.
Hasan Yüksektepe - INSTAGRAM Website : https://hayatikodla.net