如何通过 API 获取 LinkedIn 群组 Post "content",而不仅仅是标题
How to get a LinkedIn Group Post "content" through API, not just the title
通过 LinkedIn 网站开始小组讨论时,您可以输入 post标题和(可选)post文本
然而,当通过 LinkedIn API 查询此 post 时,仅返回 "title"。
https://api.linkedin.com/v1/posts/{post-id}
从 https://apigee.com/console/linkedin 进行测试以确认这不仅仅是我的脚本有问题。
是否有额外的参数可以传递给 API 以在小组讨论 post 中获取此 "text" 字段?
谢谢
您需要使用字段选择器来指定您希望从调用中返回的特定字段。
例如:
https://api.linkedin.com/v1/groups/12345:(id,name,site-group-url,posts:(id,summary,creator))
另请注意,自 2015 年 5 月 12 日起,群组的 API 端点将不再公开。有关详细信息,请参阅以下博客 post:https://developer.linkedin.com/blog/posts/2015/developer-program-changes
通过 LinkedIn 网站开始小组讨论时,您可以输入 post标题和(可选)post文本
然而,当通过 LinkedIn API 查询此 post 时,仅返回 "title"。
https://api.linkedin.com/v1/posts/{post-id}
从 https://apigee.com/console/linkedin 进行测试以确认这不仅仅是我的脚本有问题。
是否有额外的参数可以传递给 API 以在小组讨论 post 中获取此 "text" 字段?
谢谢
您需要使用字段选择器来指定您希望从调用中返回的特定字段。
例如:
https://api.linkedin.com/v1/groups/12345:(id,name,site-group-url,posts:(id,summary,creator))
另请注意,自 2015 年 5 月 12 日起,群组的 API 端点将不再公开。有关详细信息,请参阅以下博客 post:https://developer.linkedin.com/blog/posts/2015/developer-program-changes