如何使用PHP
获取来自linkedin页面的帖子的评论,分享和喜欢计数使用以下代码我在linkedIn Page上发布了帖子,
include 'simplelinkedin.class.php';
$ln = new SimpleLinkedIn('ket', 'secret');
$ln->addScope('rw_nus');
if($ln->authorize()){
echo "<pre>";
print_r ($ln->fetch('POST','/v1/people/~/shares',
array(
'comment' => 'Hello Linkedin',
'content' => array(
'title' => 'test post',
'description' => 'test post comment ',
'submittedUrl' => 'http://www.google.com'
),
'visibility' => array('code' => 'anyone' )
)
));
}
对于上面的代码,我得到了关键...
stdClass Object
(
[updateKey] => UNIU-103511686-5821126484735057920-SHARE
[updateUrl] => http://www.linkedin.com/updates?discuss=&scope=103511686&stype=M&topic=5821126484735057920&type=U&a=TpZB
)
任何人都可以帮助我如何获得帖子的总计数和评论
谢谢!
答案 0 :(得分:-1)
请参阅以下网址,我将这个用于我的ruby客户端,并且当我传递共享ID时,能够使用API获取喜欢和评论数。
API参考 - http://developer.linkedin.com/documents/commenting-reading-comments-and-likes-network-updates