Recommend this page to a friend! |
Download |
Info | Documentation | Files | Install with Composer | Download | Reputation | Support forum | Blog | Links |
Ratings | Unique User Downloads | Download Rankings | ||||
Not enough user ratings | Total: 75 | All time: 10,189 This week: 524 |
Version | License | PHP version | Categories | |||
php-instagram-query 1.0.0 | GNU General Publi... | 5 | PHP 5, Web services, Social Networking |
A simple php class to extract user profile picture, page_ids, profile_id & name from instagram
Installation is super-easy via Composer:
composer require peterujah/php-instagram-query
Initialize InstagramQuery with the necessary parameters and register your custom classes.
use \Peterujah\NanoBlock\InstagramQuery;
$lookup = new InstagramQuery();
$username = "peterchig";
OR with options
use \Peterujah\NanoBlock\InstagramQuery;
$lookup = new InstagramQuery($browserLanguage, $userAgent);
$username = "peterchig";
Fine user profile picture
$ig = $lookup->findProfilePic($username);
echo $ig->picture;
var_dump($ig);
Fine user page ids
$ig = $lookup->findPageId($username);
echo $ig->page;
var_dump($ig);
Fine user profile id
$ig = $lookup->findProfileId($username);
echo $ig->profile;
var_dump($ig);
Fine user instagram name
$ig = $lookup->findProfileName($username);
echo $ig->name;
var_dump($ig);
Files (4) |
File | Role | Description | ||
---|---|---|---|---|
src (1 file) | ||||
composer.json | Data | Auxiliary data | ||
LICENSE | Lic. | License text | ||
README.md | Doc. | Documentation |
The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. |
Install with Composer |
php-instagram-query-2022-09-18.zip 3KB | |
php-instagram-query-2022-09-18.tar.gz 2KB | |
Install with Composer |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.