wheniwork/oauth1-intuit

Intuit OAuth 1.0 Client Provider for The PHP League OAuth1-Client

v0.1.1 2015-07-30 16:38 UTC

This package is not auto-updated.

Last update: 2023-06-24 09:47:49 UTC


README

Build Status Code Coverage Code Quality License Latest Stable Version

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/',
));