【发布时间】:2015-07-04 00:46:13
【问题描述】:
如何在 PHP 中获得 LinkedIn 推荐?
如何从linkedIn API 中检索educations, recommendationsReceived, skills, twitterAccounts 和用户配置文件数据?
如何输出此类型获取: (这是虚拟数据)
{
"educations": {
"_total": 1,
"values": [
{
"degree": "MCA",
"endDate": {
"year": 2010
},
"fieldOfStudy": "English",
"id": 68487593,
"schoolName": "Computer Studies",
"startDate": {
"year": 2007
}
}
]
},
"firstName": "Firstname",
"id": "k4AWESnyv",
"recommendationsReceived": {
"_total": 1,
"values": [
{
"recommendationText": "Good Morning.",
"recommender": {
"firstName": "First Name",
"headline": "Student",
"lastName": "patel",
"pictureUrl": "https://media.licdn.com/mpr/mprx/0_V24ZjoIoyZaEFqbRgzWupnoHNs6ORLamtWosKRfVQR3qkss3v",
"publicProfileUrl": "https://www.linkedin.com/pub/linkedinuser/17/5ba/23a"
}
}
]
},
"skills": {
"_total": 9,
"values": [
{
"id": 2,
"skill": {
"name": "PHP"
}
},
{
"id": 3,
"skill": {
"name": "Joomla"
}
},
{
"id": 4,
"skill": {
"name": "Magento"
}
},
{
"id": 7,
"skill": {
"name": "WordPress"
}
},
{
"id": 8,
"skill": {
"name": "AJAX"
}
},
{
"id": 9,
"skill": {
"name": "MySQL"
}
},
{
"id": 10,
"skill": {
"name": "Web Design"
}
},
{
"id": 13,
"skill": {
"name": "E-commerce"
}
},
{
"id": 14,
"skill": {
"name": "HTML5"
}
}
]
},
"twitterAccounts": {
"_total": 1,
"values": [
{
"providerAccountId": "123456789",
"providerAccountName": "twitterusername"
}
]
}
}
【问题讨论】:
标签: php linkedin linkedin-api