5

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.

Sumner Evans
  • 8,951
  • 5
  • 30
  • 47
Arun Thakkar
  • 301
  • 5
  • 15

3 Answers3

6

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

Kirsten Jones
  • 2,681
  • 1
  • 17
  • 20
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

Community
  • 1
  • 1
0

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];
mike_m
  • 1,526
  • 4
  • 14
  • 19
Krish Solanki
  • 269
  • 4
  • 11