如何将 LinkedIn 集成到 iPhone 应用程序中?

发布于 2024-08-18 04:54:37 字数 285 浏览 6 评论 0原文

我需要您的帮助来了解有关将 linkedin 与我的 iPhone 应用程序集成的信息。

我通过谷歌搜索并能够为 LinkedIn 创建 API。使用链接

但由于我是新手,我就停在这里。我有 API 密钥和密钥,但我不知道如何使用它才能在 iPhone 应用程序中成功。

所以我请求大家建议我正确的方法。也许我会从你身上学到一些新东西。

I need your help to know regarding integrating linkedin with my iPhone Application.

I do Googling and am able to create an API for LinkedIn. Using link.

But since I am newbie, I stop here. I have both API Key and Secret Key, But I don't know how do I use it to make it Successful in iPhone Application.

So it's my request to you all to suggest me proper way. Maybe I will learn something new from you.

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

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

发布评论

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

评论(3

海未深 2024-08-25 04:54:38

请尝试 iOS 版 LIExplorer。它似乎是一个很有前途的库,提供 LinkedIn 身份验证和 API 调用。它还管理令牌缓存。

https://github.com/ vijayviswas/LIExplorer

Please try LIExplorer for iOS. It seems to be a promising library which provides LinkedIn authentication and API calls. It also manages token caching.

https://github.com/vijayviswas/LIExplorer

久夏青 2024-08-25 04:54:38

从以下位置下载库: https://github.com/NasirMalik/LinkedIn-iOS-Status

在此库中还使用了 .c 文件,这就是为什么使用编译源为:Objective-C(在构建设置中)而不是文件类型。

在您的点击事件中写入以下代码:

profileTabView=[[ProfileTabView alloc] init];
profileTabView.parentVC=self;
profileTabView.view.frame=CGRectMake(0, 0, profileTabView.view.frame.size.width, profileTabView.view.frame.size.height);
[self.view addSubview:profileTabView.view];

Download a library from : https://github.com/NasirMalik/LinkedIn-iOS-Status

In this library .c file is also used that's why use compile source as: Objective-C (in build settings) instead of file type.

Write this code in your click event:

profileTabView=[[ProfileTabView alloc] init];
profileTabView.parentVC=self;
profileTabView.view.frame=CGRectMake(0, 0, profileTabView.view.frame.size.width, profileTabView.view.frame.size.height);
[self.view addSubview:profileTabView.view];
扮仙女 2024-08-25 04:54:37

对于其他正在寻找 LinkedIn 示例 iPhone 应用程序的人,我在 GitHub 上编写了一个示例客户端(去年在硅谷 iOS 聚会上展示过):

https://github.com/synedra/LinkedIn-OAuth-Sample-Client

For other folks looking for sample iPhone applications for LinkedIn, I wrote a sample client which is on GitHub (which was presented at the Silicon Valley iOS Meetup last year):

https://github.com/synedra/LinkedIn-OAuth-Sample-Client

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