Linkedin URL Schema

I have an ios app. I can open the linked native application from my ios application using the custom linkedin: // URL scheme. But how to send a link to my native linkedin app through my ios app. Do we have any specific parameters for this?

What are the supported options for a link URL scheme?

Thanks Tiages

+6
source share
4 answers

Linkedin changed the scheme, now it works as follows:

linkedin://profile/[id] 
+4
source

You can go to the profile with:

LinkedIn: // #profile / 9999

I just tested it on my iPhone 5. It works like a charm.

There is more talk, but not much content. http://developer.linkedin.com/forum/link-open-linkedin-profile-browser-ios-linkedin-app

+3
source

Work with iOS 8.3:

 linkedin://profile?id=[id] 

Take a look at: http://pureoxygenlabs.com/10-app-url-schemes-for-marketers/

0
source

If you get a LinkedIn profile through the LinkedIn REST API , you can find the publicProfileUrl field in JSON:

 { ... "publicProfileUrl": "https://www.linkedin.com/in/eugene-brusov" ... } 

Then this line of code:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://www.linkedin.com/in/eugene-brusov"]];

redirects you to the target profile opened in the native LinkedIn application, if installed, or to the profile opened in the default iOS browser.

Tested on iOS 10.0.2 and 11.0.1 .

0
source

All Articles