I\'m implementing LinkedIn Login into my web app.. I\'m using following script as :
to l
Other way to do this:
Place an image that you like:
Create JS function like this:
function liAuth(){ IN.User.authorize(function(){ callback(); }); }
Use LinkedIn user data:
IN.API.Profile("me") .fields("firstName", "lastName", "headline") .result(resultFunction);