来自我的本机 iPhone 应用程序的 linkedin 连接

发布于 2024-08-31 16:53:02 字数 79 浏览 5 评论 0原文

大家好,我是 iphone 开发新手,我想从我的本机 iphone 应用程序连接到 linkedin,我目前不知道如何连接到它,请指导我该怎么做

hello everyone i am new bie in iphone development i want to connect to linkedin from my native iphone application i am currently having no idea how to connect to it please guide me how could i do that

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏末染殇 2024-09-07 16:53:02

来自 http://www.zhangkf.com/2010/ 06/linkedin-developer-network-oauth-authentication/

是的,您可以通过以下方式与您的本机应用程序连接 Linedin
以下是简单的步骤:

  1. 您从 LinkedIn 获得 API 密钥。在 OAuth 术语中,这也称为消费者密钥。
  2. 您在网站中构建了一项利用用户 LinkedIn 网络的功能。
  3. 您的用户点击您的用户界面来请求使用该功能。
  4. 您致电 LinkedIn 请求使用我们的身份验证。这称为获取请求令牌。
  5. LinkedIn 回复 OAuth 令牌,表明您可以使用身份验证系统。
  6. 您将用户发送至 LinkedIn URL。该 URL 包括您获得的 OAuth 令牌和一些其他参数,例如 LinkedIn 的 URL
    授予访问权限后将用户返回。
  7. 用户通过登录该页面授予对您的应用程序的访问权限。
  8. 成功登录后,LinkedIn 会将用户返回到您的网站。
  9. 然后,您将致电 LinkedIn 以获取访问令牌。
  10. LinkedIn 回复用户的访问令牌。您可以使用该访问令牌对 LinkedIn 进行任何 API 调用,以识别 LinkedIn 上的用户身份
    您代表谁拨打电话。

或者

从这里下载代码,您就可以得到它。只需提供您的 API 密钥和秘密密钥

http:// github.com/ResultsDirect/LinkedIn-iPhone

或查看以下详细信息:

http:// /developer.linkedin.com/docs/DOC-1008

From http://www.zhangkf.com/2010/06/linkedin-developer-network-oauth-authentication/:

Yes you can get connected with Linedin withyour Native Application by
following simple steps:

  1. You get an API key from LinkedIn. This is also called a Consumer Key in OAuth terminology.
  2. You build a feature into your site that leverages the user's LinkedIn network.
  3. Your user clicks on your UI to request to use that feature.
  4. You make a call to LinkedIn to ask to use our authentication. This is called getting a Request Token.
  5. LinkedIn replies with an OAuth Token indicating that you can use the authentication system.
  6. You send your user to a LinkedIn URL. That URL includes the OAuth Token you got and a few other parameters such as a URL for LinkedIn to
    return the user to after granting access.
  7. The user grants access to your application by signing into that page.
  8. Upon successful signon, LinkedIn will return the user to your site.
  9. You will then make a call to LinkedIn to get an Access Token.
  10. LinkedIn replies with an Access Token for the user. You use that Access Token for any API calls to LinkedIn to identify the user on
    whose behalf you are making the call.

Or

Download the Code from here,you could get it.Just Provide your API Key and Secrete Key

http://github.com/ResultsDirect/LinkedIn-iPhone

Or see this for details:

http://developer.linkedin.com/docs/DOC-1008

平安喜乐 2024-09-07 16:53:02

此示例 100% 完整且正常运行,只需添加您的应用程序密钥即可。

  • 使用最新的 XCode 4.01 构建。
  • 使用 UIWebView,因此您可以选择自定义浏览器 UI。
  • 使用 JSON 而不是 XML,这是大多数情况下的首选最佳实践
  • OAuth 有大量文档记录,因此您知道发生了什么
  • 使用 iPhone 4、iPad 1 和 iOS 4.x 上的模拟器进行了测试。

http://lee.hdgreetings.com/2011/03/iphone-oauth.html

This sample is 100% complete and working, just add your app key.

  • Built with the latest XCode 4.01.
  • Uses a UIWebView so you have the option of customizing the browser UI.
  • Uses JSON instead of XML, which is the preferred best practice for most cases
  • OAuth is heavily documented so you know what's happening
  • Tested with iPhone 4, iPad 1, and the simulator on iOS 4.x.

http://lee.hdgreetings.com/2011/03/iphone-oauth.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文