不确定这是否可以从文档和谷歌搜索来判断。
有人可以指出我正确的方向根据其ID查询帖子并返回有关该帖子的信息
答案 0 :(得分:0)
您可以查询链接的API端点https://api.linkedin.com/v1/companies/ {id} / historical-status-update-statistics 并在网址末尾使用(时间,喜欢次数,展示次数,点击次数,评论次数,分享次数,参与度,唯一次数),如下所示:
https://api.linkedin.com/v1/companies/ {id} / historical-status-update-statistics :(时间,喜欢次数,展示次数,点击次数,评论次数,共享次数,参与度,唯一次数)? time-granularity = day&start-timestamp = {someEpochTime}&end-timestamp = {anotherEpoch}&update-key = {someUpdateKey}&format = json
响应将是这样的:
{
"shareCount": 0,
"clickCount": 1,
"engagement": 0.014084507042253521,
"likeCount": 0,
"time": 1532563200000,
"impressionCount": 71,
"commentCount": 0,
"uniqueCount": 36
}