且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

IOS 中的单点登录身份验证需要 LinkedIn 应用程序

更新时间:2023-09-21 12:11:10

你能测试一下链接的应用程序是否存在吗:

Could you test for the presence of the linked-in app:

  • 如果不存在:直接通过您的应用实施 OAuth2
  • 如果存在:使用它或您的 OAuth2 实现(如果使用他们的应用来实现您可能需要的应用的任何功能之间的链接能力,您可能会犯错).

从而避免了安装应用程序的要求.

Thereby avoiding the REQUIREMENT to have the app installed.

我确实找到了这个研究:

Researching for this I did find:

移动与服务器端访问令牌

目前,没有可用于交换它们的机制.如果你需要可以在移动端和服务器端使用的令牌环境,您将需要实施传统的 OAuth 2.0在您的 iOS 环境中获取令牌的解决方案在这两种情况下都可以利用.

Presently, there is no mechanism available to exchange them. If you require tokens that can be used in both the mobile and server-side environment, you will need to implement a traditional OAuth 2.0 solution within your iOS environment to acquire tokens that can be leveraged in both situations.

来自:https://developer.linkedin.com/docs/ios-sdk-auth

这表明支持远离应用的身份验证.

which suggests that authentication away from the app is supported.