mineur / instagram-parser-bundle
A bundle integration of Mineur instagram parser for Symfony
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.1
- mineur/instagram-parser: dev-master
- rsqueue/rsqueue: dev-master
- rsqueue/rsqueue-bundle: dev-master
- symfony/config: ~2.3|~3.0
- symfony/dependency-injection: ~2.3|~3.0
- symfony/http-foundation: ^3.0
- symfony/http-kernel: ~2.3|~3.0
Requires (Dev)
- mmoreram/php-formatter: ^1.3
- mockery/mockery: ^0.9.9
- phpunit/phpunit: ^6.1
- symfony/var-dumper: ^3.2
This package is not auto-updated.
Last update: 2025-03-23 05:37:14 UTC
README
A Symfony integration of Mineur Instagram Parser Library.
Installation
composer require mineur/instagram-parser-bundle:dev-master
Basic initialization
Register this bundle into your application kernel.
// app/AppKernel.php class AppKernel extends Kernel { public function registerBundles() { $bundles = [ // ... new Mineur\InstagramParserBundle\InstagramParserBundle(), ]; } }
Then add your query ID in your config file:
# app/config/config.yml instagram_parser: query_id: '%your_query_id%'
Simple custom command usage
// Controllers/DemoController.php class DemoCommand extends ContainerAwareCommand { protected function configure() { //... } public function execute(InputInterface $input, OutputInterface $output) { /** @var InstagramParser $instagramParser */ $instagramParser = $this ->getContainer() ->get('instagram_parser'); $instagramParser ->parse(function(InstagramPost $post) { // you can do whatever you want with this output // prompt it, enqueue it, persist it into a database ... $output->writeln($post); }); } }
Check out the library for full customization of the public stream: instagram-parser
Command line actions
Tu use the pre-configured commands:
- To prompt the stream feed on your terminal:
bin/console mineur:instagram-parser:consume hello
- To enqueue the stream output as a serialized objects in a FIFO Redis queue, type the following:
This part is subject to RSQueue library and RSQueueBundle. I recommend you to check the RSQueue documentation to consume the enqueued objects.
bin/console mineur:instagram-parser:enqueue
The InstagramPost output
Consuming the stream will give you an infinite loop of hydrated InstagramPost objects, similar to this one:
Mineur\InstagramParser\Model\InstagramPost {#36 -id: 1539101913268979330 -comment: """ ¡Disfruta del sol pero sin quemarte! #wearsunscream #cremasolar """ -commentsCount: 0 -shortCode: "BVb_QkdhaC" -takenAtTimestamp: "149769267" -dimensions: Mineur\InstagramParser\Model\MediaDimensions {#31 -height: 1079 -width: 1080 } -likesCount: 21 -mediaSrc: "https://scontent-mrs1-1.cdnins/672_n.jpg" -thumbnailSrc: "https://cdninstagr.am/84672_n.jpg" -ownerId: "1103553924" -video: false -commentsDisabled: false }