Pedro Góes
Pedro Góes

Reputation: 747

LinkedIn iOS SDK Bundle Suffix

So, I have multiple bundles identifiers on my LinkedIn App Account. For each one of them, I've also created an URL Suffix Schemes.

The way I'm setting my URL types is like li{appID}{suffix}, where {appID} is the Application Id number as provided on LinkedIn and {suffix} is a short string I've defined for my app.

The problem is: LinkedIn apparently doesn't recognize the suffix and chooses any app that has li{appID} set as an URL type. Is there any way I can fix this?

Thank you,

Upvotes: 3

Views: 1412

Answers (3)

Rahul
Rahul

Reputation: 31

If you're using url scheme suffix, make sure it is specified in the Info.plist. The key should be "LISuffix" and the value should be the suffix. Also, register a url scheme with the format li(appId)-(suffix).

Upvotes: 2

hitesh landge
hitesh landge

Reputation: 362

I have try given types like: li{appID}-{suffix} But not getting callback from linkedin to my app.

Upvotes: 3

Justin Kominar
Justin Kominar

Reputation: 3374

Try formatting your types like: li{appID}-{suffix}

Upvotes: 4

Related Questions