Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 1.05 KB

readme.md

File metadata and controls

23 lines (17 loc) · 1.05 KB

Meetup OAuth2 Client Provider Build Status Scrutinizer Code Quality

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