LinkedIn iOS SDK Bundle Suffix

So, I have several bundle identifiers on my LinkedIn application account. For each of them, I also created URL suffix schemes.

The way to configure the URLs is similar to li{appID}{suffix} , where {appID} is the application identifier number listed on LinkedIn and {suffix} is the short string defined for my application.

Problem: LinkedIn does not seem to recognize the suffix and selects any application with li{appID} specified as the URL type. Is there any way to fix this?

Thanks,

+3
source share
3 answers

Try formatting your types, for example: li{appID}-{suffix}

+3
source

I tried types like: li {appID} - {suffix} But didn’t get the callback from linkedin in my application.

+3
source

If you use the URL scheme suffix, make sure it is listed in Info.plist. The key must be "LISuffix" and the value must be a suffix. Also register a URL scheme with the format li (appId) - (suffix).

+1
source

Source: https://habr.com/ru/post/1233145/


All Articles