aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/oauth/service/linkedin.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/service/linkedin.php')
-rw-r--r--phpBB/phpbb/auth/provider/oauth/service/linkedin.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/service/linkedin.php b/phpBB/phpbb/auth/provider/oauth/service/linkedin.php
index 118379b4ab..3231270cff 100644
--- a/phpBB/phpbb/auth/provider/oauth/service/linkedin.php
+++ b/phpBB/phpbb/auth/provider/oauth/service/linkedin.php
@@ -31,4 +31,15 @@ class phpbb_auth_provider_oauth_service_linkedin extends phpbb_auth_provider_oau
'r_basicprofile',
);
}
+
+ /**
+ * {@inheritdoc}
+ */
+ public function get_service_credentials()
+ {
+ return array(
+ 'key' => $this->config['auth_oauth_linkedin_key'],
+ 'secret' => $this->config['auth_oauth_linkedin_secret'],
+ );
+ }
}