├── .github └── FUNDING.yml ├── LICENSE ├── README.md └── instagram-api ├── api.php ├── instagram-api.php └── rest.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | ko_fi: wpsimple 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msigley/WP-Instagram-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msigley/WP-Instagram-API/HEAD/README.md -------------------------------------------------------------------------------- /instagram-api/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msigley/WP-Instagram-API/HEAD/instagram-api/api.php -------------------------------------------------------------------------------- /instagram-api/instagram-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msigley/WP-Instagram-API/HEAD/instagram-api/instagram-api.php -------------------------------------------------------------------------------- /instagram-api/rest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msigley/WP-Instagram-API/HEAD/instagram-api/rest.php --------------------------------------------------------------------------------