├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Grant ├── IgExchangeToken.php └── IgRefreshToken.php └── Provider ├── Exception └── InstagramIdentityProviderException.php ├── Instagram.php └── InstagramResourceOwner.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-instagram/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-instagram/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-instagram/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-instagram/HEAD/composer.json -------------------------------------------------------------------------------- /src/Grant/IgExchangeToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-instagram/HEAD/src/Grant/IgExchangeToken.php -------------------------------------------------------------------------------- /src/Grant/IgRefreshToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-instagram/HEAD/src/Grant/IgRefreshToken.php -------------------------------------------------------------------------------- /src/Provider/Exception/InstagramIdentityProviderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-instagram/HEAD/src/Provider/Exception/InstagramIdentityProviderException.php -------------------------------------------------------------------------------- /src/Provider/Instagram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-instagram/HEAD/src/Provider/Instagram.php -------------------------------------------------------------------------------- /src/Provider/InstagramResourceOwner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/oauth2-instagram/HEAD/src/Provider/InstagramResourceOwner.php --------------------------------------------------------------------------------