领英群组 API
这是关于 LinkedIn 群组 API 的。我正在使用此 API 从特定组获取相关数据。我关心的是在哪里可以找到 Linkedin API 以及如何使用它。我进行了很多搜索,但没有找到任何地方。如果有人可以提供一些有关组 API 的示例,那将非常有帮助。
我将 JavaScript
与此 API 配合使用,我还使用 apigee console 以及
http://api.linkedin.com/v1/groups/4058745/posts:(creation-timestamp,title,summary,creator:(first-name,last-name,picture-url,headline),likes,attachment:(image-url,content-domain,content-url,title,summary),relation-to-viewer)
上面的内容执行成功,当涉及到真正的实现时,我陷入了困境
要求是使用
JavaScript API
从特定组检索组讨论使用
JavaScript
比使用 REST 有什么优势吗?
This is regarding about LinkedIn group API. I'm using this API to get relevant data from a specific group. My area of concern is where to find Linkedin API and how to use it. I have search a lot but landed no where. If anyone can provide some examples regarding group API that would be really helpful.
I use JavaScript
with this API feather more i use apigee console as well
http://api.linkedin.com/v1/groups/4058745/posts:(creation-timestamp,title,summary,creator:(first-name,last-name,picture-url,headline),likes,attachment:(image-url,content-domain,content-url,title,summary),relation-to-viewer)
Above execution landed successfully when it comes to real implementation i got stuck
Requirement is to retrieve group discussions from a specific group using
JavaScript API
Is there any advantages to go with
JavaScript
rather than REST?.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JSAPI 是 REST API 的补充 API - 它允许开发人员将 LinkedIn API 集成到网页中,而不必暴露他们的秘密(或用户的秘密)。许多电话都有方便的方法,可以更轻松地拨打您想要的电话。但是,您不仅限于实现的便利方法 - 您可以将任何 REST API 调用包装在原始 JSAPI 调用中。因此 JSAPI 的主要优点是它可以在网页内使用。如果您已经在运行服务器并且拥有为用户存储令牌的方法,那么直接使用 REST API 可能会更好。希望这会有所帮助。
The JSAPI is a complementary API to the REST API - it allows developers to integrate the LinkedIn API into web pages without having to expose their secret (or their users' secrets). There are convenience methods for many of the calls which make it easier to make the calls you want. However, you're not limited to the implemented convenience methods - you can wrap any REST API call in a Raw JSAPI call.So the main advantage of the JSAPI is that it can be used from within a web page. If you're already running a server and have methods to store tokens for your users, you would probably be better off using the REST API directly.Hope this helps.