PHP Class Overtrue\Socialite\Providers\WeiboProvider

Inheritance: extends AbstractProvider, implements Overtrue\Socialite\ProviderInterface
Show file Open project: overtrue/socialite

Protected Properties

Property Type Description
$baseUrl string The base url of Weibo API.
$scopes array The scopes being requested.
$uid integer The uid of user authorized.
$version string The API version for the request.

Protected Methods

Method Description
getAuthUrl ( string $state ) : string Get the authentication URL for the provider.
getTokenFields ( string $code ) : array Get the Post fields for the token request.
getTokenUrl ( ) : string Get the token URL for the provider.
getUserByToken ( Overtrue\Socialite\AccessTokenInterface $token ) : array Get the raw user for the given access token.
mapUserToObject ( array $user ) : Overtrue\Socialite\User Map the raw user array to a Socialite User instance.

Method Details

getAuthUrl() protected method

Get the authentication URL for the provider.
protected getAuthUrl ( string $state ) : string
$state string
return string

getTokenFields() protected method

Get the Post fields for the token request.
protected getTokenFields ( string $code ) : array
$code string
return array

getTokenUrl() protected method

Get the token URL for the provider.
protected getTokenUrl ( ) : string
return string

getUserByToken() protected method

Get the raw user for the given access token.
protected getUserByToken ( Overtrue\Socialite\AccessTokenInterface $token ) : array
$token Overtrue\Socialite\AccessTokenInterface
return array

mapUserToObject() protected method

Map the raw user array to a Socialite User instance.
protected mapUserToObject ( array $user ) : Overtrue\Socialite\User
$user array
return Overtrue\Socialite\User

Property Details

$baseUrl protected property

The base url of Weibo API.
protected string $baseUrl
return string

$scopes protected property

The scopes being requested.
protected array $scopes
return array

$uid protected property

The uid of user authorized.
protected int $uid
return integer

$version protected property

The API version for the request.
protected string $version
return string