PHP Class Mollie\Laravel\MollieConnectProvider

Inheritance: extends Laravel\Socialite\Two\AbstractProvider, implements Laravel\Socialite\Two\ProviderInterface
Afficher le fichier Open project: mollie/laravel-mollie

Protected Properties

Свойство Type Description
$scopeSeparator string The separating character for the requested scopes.
$scopes array The scopes being requested.

Méthodes publiques

Méthode Description
getAccessToken ( string $code ) : string Get the access token for the given code.
getTokenFields ( string $code ) : array Get the POST fields for the token request.

Méthodes protégées

Méthode Description
getAuthUrl ( string $state ) : string Get the authentication URL for the provider.
getTokenUrl ( ) : string Get the token URL for the provider.
getUserByToken ( string $token ) : array Get the raw user for the given access token.
mapUserToObject ( array $user ) : Laravel\Socialite\User Map the raw user array to a Socialite User instance.

Method Details

getAccessToken() public méthode

Get the access token for the given code.
public getAccessToken ( string $code ) : string
$code string
Résultat string

getAuthUrl() protected méthode

Get the authentication URL for the provider.
protected getAuthUrl ( string $state ) : string
$state string
Résultat string

getTokenFields() public méthode

Get the POST fields for the token request.
public getTokenFields ( string $code ) : array
$code string
Résultat array

getTokenUrl() protected méthode

Get the token URL for the provider.
protected getTokenUrl ( ) : string
Résultat string

getUserByToken() protected méthode

Get the raw user for the given access token.
protected getUserByToken ( string $token ) : array
$token string
Résultat array

mapUserToObject() protected méthode

Map the raw user array to a Socialite User instance.
protected mapUserToObject ( array $user ) : Laravel\Socialite\User
$user array
Résultat Laravel\Socialite\User

Property Details

$scopeSeparator protected_oe property

The separating character for the requested scopes.
protected string $scopeSeparator
Résultat string

$scopes protected_oe property

The scopes being requested.
protected array $scopes
Résultat array