我能够get this url to work使用他们的api:/ people / id = 123 :( num-connections-total)
它返回连接数,但是如果连接数超过500,它只返回500.有没有办法让它返回实际的确切数字?
我正在使用此文档页面:
https://developer.linkedin.com/documents/profile-api
此页面还有更多关于可能的字段:
https://developer.linkedin.com/documents/profile-fields#profile
谢谢!
答案 0 :(得分:2)
如果要检索查看用户的连接,则是,您将使用调用返回的集合中的total
属性中的值:
http://api.linkedin.com/v1/people/id=123:(connections)
其中123是观看成员的id。返回值如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<person>
<connections total="XXX" count="YYY" start="0">
<person>
...
</person>
</connections>
</person>
如果您尝试为查看用户的连接或其他未连接的用户提取连接数,那么不可以,as connections of connections are not available via the APIs。您也可以在LinkedIn.com上看到此行为,其中超过500的成员只显示有500多个连接。