LinkedIn 历史公司统计数据给我错误的关注者数量
LinkedIn historical company statistics giving me the wrong number of followers
我正在尝试编写一个回填脚本,该脚本将为我们缺少数据的 linkedin 公司提取历史关注者数量。我当前的脚本能够从 linkedin 取回数据,但这些数字对于我的测试公司来说似乎不正确。我正在使用这家公司:https://www.linkedin.com/company/3802814
(这些时间戳对应于 01/01/1980 和 01/15/2015)
我得到的数据显示有 14 个(不是我公司实际拥有的 6 个)关注者,全部在 random/incorrect 日期,全为 0:
{
"_total": 14,
"values": [
{
"organicFollowerCount": 0,
"paidFollowerCount": 0,
"time": 259200000,
"totalFollowerCount": 0
},
{
"organicFollowerCount": 0,
"paidFollowerCount": 0,
"time": 345600000,
"totalFollowerCount": 0
},
... (10 more similar records)
{
"organicFollowerCount": 0,
"paidFollowerCount": 0,
"time": 1296000000,
"totalFollowerCount": 0
},
{
"organicFollowerCount": 0,
"paidFollowerCount": 0,
"time": 1382400000,
"totalFollowerCount": 0
}
]
}
我会猜到我的时间戳是错误的,直到我看到它给了我比我实际应该拥有的更多的关注者。有谁知道我可能做错了什么?到目前为止,查看 linkedin 文档还没有给我任何明显的答案。我期望的数据是一系列每日记录,由在给定日期添加的关注者数量更新。这些关注者主要是在 2014 年 12 月的某个时候添加的。
这是您为获取所需信息而应该提出的正确请求:
GET https://api.linkedin.com/v1/companies/3802814/historical-follow-statistics?start-timestamp=315561600000&time-granularity=day&end-timestamp=1421308800000&format=json
您想确保使用以毫秒为单位的时间戳。
您还看到的总价值是结果数 - 而不是关注者数。
我正在尝试编写一个回填脚本,该脚本将为我们缺少数据的 linkedin 公司提取历史关注者数量。我当前的脚本能够从 linkedin 取回数据,但这些数字对于我的测试公司来说似乎不正确。我正在使用这家公司:https://www.linkedin.com/company/3802814
(这些时间戳对应于 01/01/1980 和 01/15/2015)
我得到的数据显示有 14 个(不是我公司实际拥有的 6 个)关注者,全部在 random/incorrect 日期,全为 0:
{
"_total": 14,
"values": [
{
"organicFollowerCount": 0,
"paidFollowerCount": 0,
"time": 259200000,
"totalFollowerCount": 0
},
{
"organicFollowerCount": 0,
"paidFollowerCount": 0,
"time": 345600000,
"totalFollowerCount": 0
},
... (10 more similar records)
{
"organicFollowerCount": 0,
"paidFollowerCount": 0,
"time": 1296000000,
"totalFollowerCount": 0
},
{
"organicFollowerCount": 0,
"paidFollowerCount": 0,
"time": 1382400000,
"totalFollowerCount": 0
}
]
}
我会猜到我的时间戳是错误的,直到我看到它给了我比我实际应该拥有的更多的关注者。有谁知道我可能做错了什么?到目前为止,查看 linkedin 文档还没有给我任何明显的答案。我期望的数据是一系列每日记录,由在给定日期添加的关注者数量更新。这些关注者主要是在 2014 年 12 月的某个时候添加的。
这是您为获取所需信息而应该提出的正确请求:
GET https://api.linkedin.com/v1/companies/3802814/historical-follow-statistics?start-timestamp=315561600000&time-granularity=day&end-timestamp=1421308800000&format=json
您想确保使用以毫秒为单位的时间戳。
您还看到的总价值是结果数 - 而不是关注者数。