我想知道是否可以从某人那里获取LinkedIn的基本个人资料?
当我在系统上注册一个新用户时,希望能够获得这个新用户的基本信息,以便注明那个人的URL。例如。
如果可能,我该如何使用Javascript SDK?
// Setup an event listener to make an API call once auth is complete
function onLinkedInLoad() {
IN.Event.on(IN, "auth", getProfileData);
}
// Handle the successful return from the API call
function onSuccess(data) {
console.log(data);
}
// Handle an error response from the API call
function onError(error) {
console.log(error);
}
// Use the API call wrapper to request the member's basic profile data
function getProfileData() {
IN.API.Raw("/people/~").result(onSuccess).error(onError);
}
答案 0 :(得分:0)
我认为LinkedIn文档很好地介绍了这一点。如果您正在寻找更具体的内容,那么您应该澄清一下。
你应该看看https://developer.linkedin.com/docs/js-sdk
您链接的来源与https://developer.linkedin.com/docs/signin-with-linkedin相似,但如果不是,您也应该看一下。