wheniwork / oauth1-intuit
Intuit OAuth 1.0 Client Provider for The PHP League OAuth1-Client
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 355 693
Dependents: 3
Suggesters: 0
Security: 0
Stars: 4
Watchers: 7
Forks: 3
Open Issues: 0
Requires
- php: >=5.4.0
- league/oauth1-client: ~1.2
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2023-06-24 09:47:49 UTC
README
This package provides Intuit OAuth 1.0 support for the PHP League's OAuth 1.0 Client.
Installation
To install, use composer:
composer require wheniwork/oauth1-intuit
Usage
Usage is the same as The League's OAuth client, using Wheniwork\OAuth1\Client\Server\Intuit
as the provider.
$server = new Wheniwork\OAuth1\Client\Server\Intuit(array( 'identifier' => 'your-identifier', 'secret' => 'your-secret', 'callback_uri' => 'http://your-callback-uri/', ));