Property | Type | Description | |
---|---|---|---|
$scopeSeparator | string | The separating character for the requested scopes. | |
$scopes | array | The scopes being requested. |
Method | 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. |
Method | 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. |
public getAccessToken ( string $code ) : string | ||
$code | string | |
return | string |
protected getAuthUrl ( string $state ) : string | ||
$state | string | |
return | string |
public getTokenFields ( string $code ) : array | ||
$code | string | |
return | array |
protected getTokenUrl ( ) : string | ||
return | string |
protected getUserByToken ( string $token ) : array | ||
$token | string | |
return | array |
protected mapUserToObject ( array $user ) : Laravel\Socialite\User | ||
$user | array | |
return | Laravel\Socialite\User |
protected string $scopeSeparator | ||
return | string |