authclient\clients\LinkedIn apiInternal()

apiInternal() protected method Performs request to the OAuth API. protected array apiInternal ( $accessToken, $url, $method, array $params, array $headers )$accessToken yii\authclient\OAuthToken Actual access token. $url string Absolute API URL. $method string Request method. $params array Request parameters. $headers array Additional request headers. return array API response. throws yii\base\Exception on failure.

authclient\clients\LinkedIn $tokenUrl

$tokenUrl public property Token request URL endpoint. Token request URL endpoint. public string $tokenUrl = 'https://www.linkedin.com/uas/oauth2/accessToken'

authclient\clients\LinkedIn $apiBaseUrl

$apiBaseUrl public property API base URL. API base URL. public string $apiBaseUrl = 'https://api.linkedin.com/v1'

authclient\clients\LinkedIn $attributeNames

$attributeNames public property (available since version 2.0.4) List of attribute names, which should be requested from API to initialize user attributes. public array $attributeNames = ['id', 'email-address', 'first-name', 'last-name', 'public-profile-url']

authclient\clients\GoogleOpenId defaultViewOptions()

defaultViewOptions() protected method Returns the default $viewOptions value. Particular client may override this method in order to provide specific default view options. protected array defaultViewOptions ( )return array List of default $viewOptions

authclient\clients\GoogleOpenId defaultNormalizeUserAttributeMap()

defaultNormalizeUserAttributeMap() protected method Returns the default $normalizeUserAttributeMap value. Particular client may override this method in order to provide specific default map. protected array defaultNormalizeUserAttributeMap ( )return array Normalize attribute map.

authclient\clients\GoogleOpenId defaultName()

defaultName() protected method Generates service name. protected string defaultName ( )return string Service name.

authclient\clients\GoogleOpenId defaultTitle()

defaultTitle() protected method Generates service title. protected string defaultTitle ( )return string Service title.

authclient\clients\GoogleOpenId $requiredAttributes

$requiredAttributes public property List of attributes, which always should be returned from server. Attribute names should be always specified in AX format. For example: ['namePerson/friendly', 'contact/email'] List of attributes, which always should be returned from server. Attribute names should be always specified in AX format. For example: ['namePerson/friendly', 'contact/email'] public array $requiredAttributes = ['namePerson/first', 'namePerson/last', 'contact/email', 'pref/langua

authclient\clients\GoogleOAuth init()

init() public method Initializes the object. This method is invoked at the end of the constructor after the object is initialized with the given configuration. public void init ( )