How can I integrate LinkedIn within an iPhone application?

时光总嘲笑我的痴心妄想 提交于 2019-12-28 06:48:27

问题


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.


回答1:


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




回答2:


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




回答3:


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];


来源:https://stackoverflow.com/questions/2085048/how-can-i-integrate-linkedin-within-an-iphone-application

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!