简体   繁体   中英

How can I integrate LinkedIn within an iPhone application?

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.

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

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM