是否可以在没有 oauth 的情况下从 linkedin api 获取我的个人信息?
Is it possible to get my personal info from linkedin api without oauth?
我正在设置一个个人页面,我想显示我过去的工作经历和我在链接中的其他数据,以便在我更新我的链接个人资料时自动更新。这可以不用做 oauth
吗?我只想要我自己的数据。
没有
正如该公司在 their REST API page 上所说:
In order for your applications to access LinkedIn member data and/or act on their behalf, they must be authenticated. LinkedIn relies on the industry standard OAuth 2.0 protocol for granting access, due to its simplicity and ease of implementation.
另请参阅此 previous SO question。
但这并不意味着无法为您处理 OAuth:
As a convenience, if you are developing a front-end JavaScript or
Android application, we provide SDKs to handle the authentication
process for you.
Additionally, there are several 3rd party libraries available in the
open source community that abstract the OAuth 2.0 authentication
process for you in every major programming language.
至于他们支持的主要语言,LinkedIn 在他们的 API Get Started page.
上提供 PHP、Python 和 Java 的演练。
我正在设置一个个人页面,我想显示我过去的工作经历和我在链接中的其他数据,以便在我更新我的链接个人资料时自动更新。这可以不用做 oauth
吗?我只想要我自己的数据。
没有
正如该公司在 their REST API page 上所说:
In order for your applications to access LinkedIn member data and/or act on their behalf, they must be authenticated. LinkedIn relies on the industry standard OAuth 2.0 protocol for granting access, due to its simplicity and ease of implementation.
另请参阅此 previous SO question。
但这并不意味着无法为您处理 OAuth:
As a convenience, if you are developing a front-end JavaScript or Android application, we provide SDKs to handle the authentication process for you.
Additionally, there are several 3rd party libraries available in the open source community that abstract the OAuth 2.0 authentication process for you in every major programming language.
至于他们支持的主要语言,LinkedIn 在他们的 API Get Started page.
上提供 PHP、Python 和 Java 的演练。