How can I integrate LinkedIn within an iPhone application?
Asked Answered
D

3

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.

Desirable answered 18/1, 2010 at 9:42 Comment(1)
look this video youtube.com/watch?v=PXuu3t3pIe4Iredale
V
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

Visible answered 23/12, 2011 at 16:51 Comment(2)
Absolutely awesome! Just one question is the client code compatible with the new iOS >=6 ?Electroballistics
@kirsten jones whenever am trying to build, it shows an alert, you don't have permission, what to do?Macrobiotics
S
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

Supranational answered 24/6, 2015 at 19:53 Comment(0)
C
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];
Cutwork answered 19/7, 2014 at 9:45 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.