We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ideally support some workflow like:
$provider = new League\OAuth2\Client\Provider\Provider([ 'grantType' => 'zzzzzzz', // possibly not needed? 'tokenUrl' => 'ccccc', 'refreshUrl' => 'aaaaaa', 'clientId' => 'XXXXXXXX', 'clientSecret' => 'XXXXXXXX', 'redirectUri' => 'https://your-registered-redirect-uri/', 'scopes' => array('email', '...', '...'), ));
The text was updated successfully, but these errors were encountered:
Yeah you wouldn't need to grant type that early on, that would be relevant later.
public $clientId = ''; public $clientSecret = ''; public $redirectUri = ''; public $state; public $name; public $uidKey = 'uid'; public $scopes = []; public $method = 'post'; public $scopeSeparator = ','; public $responseType = 'json'; public $headers = null;
These are the items that would need to be configurable to make a GenericProvider possible.
Sorry, something went wrong.
No branches or pull requests
Ideally support some workflow like:
The text was updated successfully, but these errors were encountered: