到目前为止,我可以获取名字和姓氏,电子邮件,职位等,但是找不到用于将url转到linkedin个人资料的命令。我正在尝试通过我的Web应用程序发送linkedin个人资料网址。这是我获取用户数据的条件
function grabUserData() {
let profile = {};
IN.API.Profile('me').fields([
'first-name', 'last-name', // Add these to get the name
'industry', 'date-of-birth', 'educations:(id,school-name)',
'positions', // Add this one to get the job history
'picture-url',//gets image
'email-address'
]).result(function(profiles) {
console.log(profiles.values[0]);//gives me profile info
profile = profiles.values[0];
updateWithInfo(profile);//just displays it on my site
});
}
答案 0 :(得分:0)
有一个字段:vanityName
。
成员的虚荣名称。虚荣名称表示为用于公共配置文件URL的字符串:www.linkedin.com/in/{vanityName}。 Basic Profile Fields