ahmedinzm adlı üyeden alıntı: mesajı görüntüle
Merhaba, composer yüklü mü sizde?
evet hocam

bu php kodu ile çalılıyor fakat bu farklı bir dosyadan çekiyor sanırım hd_profile_picture delde profile_picture_url çıktısı geliyor


<?php

require 'vendor/autoload.php';

use GuzzleHttpClient;
use InstagramApi;
use SymfonyComponentCacheAdapterFilesystemAdapter;
use simplehtmldomHtmlDocument;

$cachePool = new FilesystemAdapter('Instagram', 0, _DIR_ . '/../cache');

$api = new Api($cachePool);
$api->login('HESAP', 'ŞİFRE'); // mandatory
$profile = $api->getProfile('gratistr');

print_r($profile);


?>