howlowck/meetup-oauth2-provider

There is no license information available for the latest version (0.1.0) of this package.

Meetup OAuth2 Client Provider for Leagues OAuth2-Client

0.1.0 2014-11-13 07:42 UTC

This package is not auto-updated.

Last update: 2024-04-23 01:29:51 UTC


README

This package is made for the League's OAuth2 Client.

Install

From command line: composer require howlowck/meetup-oauth2-provider

To Instantiate a Provider

$provider =  new \Howlowck\OAuth2\Client\Provider\Meetup(array(
    'clientId'  =>  'YOUR_CONSUMER_KEY',
    'clientSecret'  =>  'YOUR_CONSUMER_SECRET',
    'redirectUri' => 'your-redirect-url',
    'scopes' => array('basic'),
));

Notes

For more consumption details, please refer to the readme on League's OAuth2 Client.

More info about Meetup's OAuth2 Specs