{"id":36979955,"url":"https://github.com/downace/instagram-php-scraper","last_synced_at":"2026-01-13T22:49:34.435Z","repository":{"id":56971628,"uuid":"135038015","full_name":"downace/instagram-php-scraper","owner":"downace","description":"Instagram PHP Scraper. Get account information, photos, videos, stories and comments.","archived":true,"fork":true,"pushed_at":"2020-02-17T10:38:05.000Z","size":336,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-11T14:48:47.526Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://packagist.org/packages/raiym/instagram-php-scraper","language":"PHP","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"postaddictme/instagram-php-scraper","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/downace.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-05-27T10:54:15.000Z","updated_at":"2024-02-29T05:57:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/downace/instagram-php-scraper","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/downace/instagram-php-scraper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/downace%2Finstagram-php-scraper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/downace%2Finstagram-php-scraper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/downace%2Finstagram-php-scraper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/downace%2Finstagram-php-scraper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/downace","download_url":"https://codeload.github.com/downace/instagram-php-scraper/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/downace%2Finstagram-php-scraper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28403745,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-13T22:49:34.349Z","updated_at":"2026-01-13T22:49:34.421Z","avatar_url":"https://github.com/downace.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [ABANDONED] Instagram PHP Scrapper\n\n**This package is abandoned. Use original [postaddictme/instagram-php-scraper](https://github.com/postaddictme/instagram-php-scraper)**\n\nThis is the fork of [`postaddictme/instagram-php-scraper`](https://github.com/postaddictme/instagram-php-scraper) repo.\nDescription from original:\n\n\u003e This library based on Instagram web version. We develop it because nowadays it is hard to get approved Instagram application. \n\u003e The purpose support every feature that web desktop and mobile version support. \n\n\n## Fork Information\n\nThis fork provides ability to specify custom HTTP client for handling requests.\nClients for [`guzzlehttp/guzzle`](https://github.com/guzzle/guzzle) and\n[`mashape/unirest-php`](https://github.com/Mashape/unirest-php) are included.\n\nAlso, proxy methods are removed from `Instagram` class: proxy should be configured for HTTP client\n(following the principle of separation of concerns) \n\n\n## Installation\n\n### Using composer\n\n```sh\ncomposer require downace/instagram-php-scraper\n```\n\n### If you don't have composer\nYou can download it [here](https://getcomposer.org/download/).\n\n\n## Examples\n\nYou can see examples of using original library [here](https://github.com/postaddictme/instagram-php-scraper/tree/master/examples).\n\nWith Unirest ([`mashape/unirest-php`](https://github.com/Mashape/unirest-php) is required):\n\n```php\n$insta = new Instagram(new \\InstagramScraper\\HttpClient\\UnirestClient());\n```\n\nWith Guzzle ([`guzzlehttp/guzzle`](https://github.com/guzzle/guzzle) is required):\n\n```php\n// \\GuzzleHttp\\Client with default options will be used\n$insta = new Instagram(new \\InstagramScraper\\HttpClient\\GuzzleClient());\n\n// You can provide options for \\GuzzleHttp\\Client constructor\n$insta = new Instagram(new \\InstagramScraper\\HttpClient\\GuzzleClient([ 'timeout' =\u003e 5 ]));\n\n// Or pass your own instance of \\GuzzleHttp\\ClientInterface:\n$insta = new Instagram(new \\InstagramScraper\\HttpClient\\GuzzleClient($myClient));\n```\n\nUsing proxy:\n\n```php\n// With Guzzle.\n$insta = new Instagram(new \\InstagramScraper\\HttpClient\\GuzzleClient([\n    'proxy' =\u003e 'http://user:pass@localhost:8125'\n]));\n\n// With Unirest\nRequest::proxy('localhost', 8125, CURLPROXY_HTTP);\nRequest::proxyAuth('user', 'pass');\n$insta = new Instagram(new \\InstagramScraper\\HttpClient\\UnirestClient());\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdownace%2Finstagram-php-scraper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdownace%2Finstagram-php-scraper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdownace%2Finstagram-php-scraper/lists"}