如何使用php获取评论,分享和喜欢来自linkedin的帖子的数量

时间:2013-12-24 07:04:11

标签: php api linkedin

如何使用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
)

任何人都可以帮助我如何获得帖子的总计数和评论

谢谢!

1 个答案:

答案 0 :(得分:-1)

请参阅以下网址,我将这个用于我的ruby客户端,并且当我传递共享ID时,能够使用API​​获取喜欢和评论数。

API参考 - http://developer.linkedin.com/documents/commenting-reading-comments-and-likes-network-updates