Changes required to make this plugin work
-
I had to make a couple of changes to the code to make this work (devs / please let me know if you’re interested in including these in the core, and I’ll help update).
edit linkedin-sc.php
Line 270: Change
<script type=”text/javascript” src=”http://platform.linkedin.com/in.js”>to
<script type=”text/javascript” src=”https://platform.linkedin.com/in.js”>Then just below that, add a scope to allow access to the full profile from linkedin (otherwise you will only be able to display the public details)
Change
api_key: <?php echo $api_config[‘consumer_key’].”\n”; ?>
credentials_cookie: trueto
api_key: <?php echo $api_config[‘consumer_key’].”\n”; ?>
scope: r_fullprofile
credentials_cookie: true
The topic ‘Changes required to make this plugin work’ is closed to new replies.