简体   繁体   English

在未授权用户的情况下搜索LinkedIn API

[英]Searching the LinkedIn API without authorizing a user

Im currently creating a PHP application that searched various Social Media and analyses the results. 我目前正在创建一个PHP应用程序,搜索各种社交媒体并分析结果。 Now im stuck at calling the LinkedIn API. 现在我坚持调用LinkedIn API。

I need to call these API's without user authentication (I need a sort of app authentication). 我需要在没有用户身份验证的情况下调用这些API(我需要一种应用程序身份验证)。 Facebook offers a way to retrieve an access token, based on app key and secret. Facebook提供了一种基于app密钥和秘密检索访问令牌的方法。 With Twitter I simply used my own accestoken en access secret. 使用Twitter我只使用自己的口音访问秘密。

I searched all day for a way to call the LinkedIn API in a similar way, but havent succeeded in finding one. 我整天搜索了一种以类似方式调用LinkedIn API的方法,但没有成功找到一个。 I also couldn't find my own access token en secret on the LinkedIn developer's site. 我也无法在LinkedIn开发者网站上找到我自己的访问令牌。

Do you know how I can access the LinkedIn API from my PHP application, without the user having to login himself? 你知道如何从我的PHP应用程序访问LinkedIn API,而无需用户自己登录吗?

Hope you guys can help me out! 希望你们能帮助我!

The LinkedIn API doesn't support non-user-authenticated requests - that is, there are no calls for which you can just use the consumer key and secret - they all require a user token and secret as well. LinkedIn API不支持非用户身份验证的请求 - 也就是说,没有可以使用消费者密钥和密钥的呼叫 - 它们都需要用户令牌和密钥。

The LinkedIn API is designed to be used from the member's perspective, acting on behalf of a specific member - it's not designed to support general application search use cases. LinkedIn API旨在从成员的角度使用,代表特定成员行事 - 它不是为支持一般应用程序搜索用例而设计的。

Terms of use: https://developer.linkedin.com/documents/linkedin-apis-terms-use 使用条款: https//developer.linkedin.com/documents/linkedin-apis-terms-use

与Twitter一样,您可以使用自己的访问令牌,但根据LinkedIn指南 ,除非您使用代表他们获得的令牌,否则您无法向任何人显示您提取的信息。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM