如何使用javascript登录linkedin并显示个人资料信息 [英] How to Login with linkedin using javascript and display profile information

查看:159
本文介绍了如何使用javascript登录linkedin并显示个人资料信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用javascript集成Linkedin登录. 我进行了搜索,并获得了相关的结果.但是很多搜索结果显示以下代码:

I want to integrate Linkedin login using javascript. I searched for that and get relevant results. But lot of search results says that below code:

<script type="in/Login">
</script>

用于创建登录按钮.但是我想使用自己的自定义按钮,并在HTML中的"onClick"事件上调用函数. 向正确的方向提供帮助.

is used to create sign-in button. But i want to use my own custom button and call a function on "onClick" event in my HTML. Help in correct direction.

我的代码:

function linkedinLogin(){
    console.log('linkedinLogin called');
    var src="http://platform.linkedin.com/in.js"
    api_key: 'XXXXXXXXXXXXXXXX'
    authorize: true
    onLoad: OnLinkedInFrameworkLoad
}

function OnLinkedInFrameworkLoad() 
{
      IN.Event.on(IN, "auth", OnLinkedInAuth);
}

function OnLinkedInAuth() {
    IN.API.Profile("me").result(ShowProfileData);
}

function ShowProfileData(profiles) 
{
    var member = profiles.values[0];
    console.log(member);
    var id=member.id;
    var firstName=member.firstName; 
    var lastName=member.lastName; 
    var photo=member.pictureUrl; 
    var headline=member.headline; 

    //use information captured above
    var str="<b>id</b> : "+id+"<br>";
    str +="<b>firstName: </b>"+firstName+"<br>";
    str +="<b>lastName: </b>"+lastName+"<br>";
    str +="<b>photo: </b>"+photo+"<br>";
    str +="<b>headline: </b>"+headline+"<br>";
    str +="<input type='button' value='Logout' onclick='logout();'/>";
    document.getElementById("status").innerHTML = str;
}

这是我的HTML代码段:

And this is my HTML snippet:

<li>
    <a href="javascript:void(0);" onClick="linkedinLogin()">
        <img src="images/icon_linkedIn.png" />
        <span>LinkedIn</span>
    </a>
</li>

推荐答案

<html>
<head>
<title>LinkedIn JavaScript API Hello World</title>

<!-- 1. Include the LinkedIn JavaScript API and define a onLoad callback function -->
<script type="text/javascript" src="https://platform.linkedin.com/in.js">
  api_key: xxx
  onLoad: onLinkedInLoad
  authorize: true
</script>

<script type="text/javascript">
  // 2. Runs when the JavaScript framework is loaded
  function onLinkedInLoad() {
    IN.Event.on(IN, "auth", onLinkedInAuth);
  }
  
  
  // 2. Runs when the viewer has authenticated
  function onLinkedInAuth() {

    IN.API.Profile("me").fields("id","first-name", "last-name", "email-address").result(displayProfiles);
  }

  // 2. Runs when the Profile() API call returns successfully
  function displayProfiles(profiles) {
    member = profiles.values[0];
    document.getElementById("profiles").innerHTML = 
      "<p>"+member.id+"<br> " +  member.firstName + "<br> " + member.lastName + "<br>"+member.emailAddress+"</p>";
  }
</script>

</head>
<body>

<!-- 3. Displays a button to let the viewer authenticate -->
<script type="in/Login"></script>

<!-- 4. Placeholder for the greeting -->
<div id="profiles"></div>

</body>
</html>

你可以试试吗?

这篇关于如何使用javascript登录linkedin并显示个人资料信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆