PHP Class SocialiteProviders\Manager\OAuth1\AbstractProvider

Inheritance: extends Laravel\Socialite\One\AbstractProvider, use trait SocialiteProviders\Manager\ConfigTrait
Afficher le fichier Open project: socialiteproviders/manager

Protected Properties

Свойство Type Description
$credentialsResponseBody array
$stateless boolean Indicates if the session state should be utilized.

Méthodes publiques

Méthode Description
redirect ( ) : RedirectResponse Redirect the user to the authentication page for the provider.
scopes ( array $scopes ) Set the scopes of the requested access.
serviceContainerKey ( $providerName )
setConfig ( SocialiteProviders\Manager\Contracts\ConfigInterface $config )
stateless ( $stateless = true ) Indicates that the provider should operate as stateless.
user ( )
with ( array $parameters ) Set the custom parameters of the request.

Méthodes protégées

Méthode Description
getToken ( ) : League\OAuth1\Client\Credentials\TokenCredentials Get the token credentials for the request.
isStateless ( ) : boolean Determine if the provider is operating as stateless.

Method Details

getToken() protected méthode

Get the token credentials for the request.
protected getToken ( ) : League\OAuth1\Client\Credentials\TokenCredentials
Résultat League\OAuth1\Client\Credentials\TokenCredentials

isStateless() protected méthode

Determine if the provider is operating as stateless.
protected isStateless ( ) : boolean
Résultat boolean

redirect() public méthode

Redirect the user to the authentication page for the provider.
public redirect ( ) : RedirectResponse
Résultat Symfony\Component\HttpFoundation\RedirectResponse

scopes() public méthode

Set the scopes of the requested access.
public scopes ( array $scopes )
$scopes array

serviceContainerKey() public static méthode

public static serviceContainerKey ( $providerName )

setConfig() public méthode

public setConfig ( SocialiteProviders\Manager\Contracts\ConfigInterface $config )
$config SocialiteProviders\Manager\Contracts\ConfigInterface

stateless() public méthode

Indicates that the provider should operate as stateless.
public stateless ( $stateless = true )

user() public méthode

public user ( )

with() public méthode

Set the custom parameters of the request.
public with ( array $parameters )
$parameters array

Property Details

$credentialsResponseBody protected_oe property

protected array $credentialsResponseBody
Résultat array

$stateless protected_oe property

Indicates if the session state should be utilized.
protected bool $stateless
Résultat boolean