chadhutchins / oauth2-mailchimp
Mailchimp OAuth 2.0 Client Provider for The PHP League OAuth2-Client
Installs: 13 950
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- league/oauth2-client: ^2.0
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.0
- squizlabs/php_codesniffer: ~2.0
This package is auto-updated.
Last update: 2024-10-23 04:03:46 UTC
README
Installation
To install, use composer:
composer require chadhutchins/oauth2-mailchimp
Usage
Usage is the same as The League's OAuth client, using \Chadhutchins\OAuth2\Client\Provider\Mailchimp
as the provider.
Authorization Code Flow
$provider = new \Chadhutchins\OAuth2\Client\Provider\Mailchimp([ 'clientId' => '{mailchimp-client-id}', 'clientSecret' => '{mailchimp-client-secret}', 'redirectUri' => 'https://example.com/callback-url', ]);
For further usage of this package please refer to the core package documentation on "Authorization Code Grant".
Credits
- Chad Hutchins
- Steven Maguire - Thanks to Steven's other third-party providers, I learned how to do this.
- All Contributors
License
The MIT License (MIT). Please see License File for more information.