Suskun0 adlı üyeden alıntı: mesajı görüntüle
Merabalar Beyler Şöyle Birşey Yapmak Istiyorum

Kişi Instagram Login Yapınca Benim Verdiğim Instagram User Id Mi Takip Edicek Nasıl Yaparım

Codeigniter

<?php
set_time_limit(0);
date_default_timezone_set('UTC');

require __DIR__ . '/vendor/autoload.php';

/////// CONFIG ///////
$username = '';
$password = '';

$debug = false;
$truncatedDebug = false;

//////////////////////
InstagramAPIInstagram::$allowDangerousWebUsageAtMyOwnRisk = true;
$ig = new InstagramAPIInstagram($debug, $truncatedDebug);
try {
$ig->login($username, $password);
} catch (Exception $e) {
echo 'Hata (Login) : ' . $e->getMessage() . "n";
exit(0);
}

try {
$follow= $ig->people->follow('8176189561');
echo $follow->getStatus();

}catch (Exception $e) {
echo 'Hata: ' . $e->getMessage() . "n";
}
?>