我在使用API方法提取LinkedIn网络更新时遇到问题。
我可以提取我的SHAR和CMPY网络更新但是当我尝试过滤CONN,VIRL或其他类型时,我会得到不同类型的网络更新。让我向你解释一下。
此 https://api.linkedin.com/v1/people/~/network/updates:(update-type)?type=SHAR&count=100
工作并返回:
<updates total="120" count="70" start="0">
<update>
<update-type>SHAR</update-type>
</update>
<update>
<update-type>SHAR</update-type>
</update>
...
</updates>
此 https://api.linkedin.com/v1/people/~/network/updates:(update-type)?type=VIRL&count=100
不起作用,返回:
<updates total="201" count="94" start="0">
<update>
<update-type>CONN</update-type>
</update>
<update>
<update-type>SHAR</update-type>
</update>
<update>
<update-type>VIRL</update-type>
</update>
...
</updates>
LinkedIn是否更改了网络更新类型?
答案 0 :(得分:0)
VIRL更新是该人员所采取行动的(喜欢或评论)。所以它可以包括各种其他更新。原始更新在原始更新下。
我使用过JSON输出,所以它看起来像这样:
并在扩展originalUpdate密钥时;它看起来像这样: