slyvent/meetup-oauth2-provider

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

Meetup OAuth2 Client Provider for Leagues OAuth2-Client

0.2.0 2017-04-06 00:35 UTC

This package is not auto-updated.

Last update: 2024-06-14 18:23:07 UTC


README

Meetup OAuth2 Client Provider Build Status

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

Install

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

To Instantiate a Provider

$provider =  new \Slyvent\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