public function LinkedInAuthManager::getAuthenticationUrl in Open Social 8.7
Same name and namespace in other branches
- 8.9 modules/custom/social_auth_linkedin/src/LinkedInAuthManager.php \Drupal\social_auth_linkedin\LinkedInAuthManager::getAuthenticationUrl()
- 8 modules/custom/social_auth_linkedin/src/LinkedInAuthManager.php \Drupal\social_auth_linkedin\LinkedInAuthManager::getAuthenticationUrl()
- 8.2 modules/custom/social_auth_linkedin/src/LinkedInAuthManager.php \Drupal\social_auth_linkedin\LinkedInAuthManager::getAuthenticationUrl()
- 8.3 modules/custom/social_auth_linkedin/src/LinkedInAuthManager.php \Drupal\social_auth_linkedin\LinkedInAuthManager::getAuthenticationUrl()
- 8.4 modules/custom/social_auth_linkedin/src/LinkedInAuthManager.php \Drupal\social_auth_linkedin\LinkedInAuthManager::getAuthenticationUrl()
- 8.5 modules/custom/social_auth_linkedin/src/LinkedInAuthManager.php \Drupal\social_auth_linkedin\LinkedInAuthManager::getAuthenticationUrl()
- 8.6 modules/custom/social_auth_linkedin/src/LinkedInAuthManager.php \Drupal\social_auth_linkedin\LinkedInAuthManager::getAuthenticationUrl()
- 8.8 modules/custom/social_auth_linkedin/src/LinkedInAuthManager.php \Drupal\social_auth_linkedin\LinkedInAuthManager::getAuthenticationUrl()
Returns the login URL where user will be redirected for authentication.
Parameters
string $type: Type of action. "login" or "register".
array $scope: List of permissions which should be asked during authentication.
Return value
string Absolute URL.
Overrides AuthManagerInterface::getAuthenticationUrl
File
- modules/
custom/ social_auth_linkedin/ src/ LinkedInAuthManager.php, line 39
Class
- LinkedInAuthManager
- Class LinkedInAuthManager.
Namespace
Drupal\social_auth_linkedinCode
public function getAuthenticationUrl($type, array $scope = [
Scope::READ_LITE_PROFILE,
Scope::READ_EMAIL_ADDRESS,
]) {
$redirect_url = $this
->getRedirectUrl($type);
// Set the redirect for the third party with our own.
$this->sdk
->setRedirectUrl($redirect_url);
return $this->sdk
->getLoginUrl([
'scope' => implode(',', $scope),
]);
}