0

我正在尝试将一个 LinkedIn 应用程序用于一个应用程序的多个白标版本。

我已经成功让 FB 这样做了 - 看起来 LinkedIn 应该非常相似,但无法成功让 LinkedIn 返回到正确的应用程序(当安装了其他应用程序时)。有时它不会返回,有时它会转到共享相同 LI App ID 的其他应用程序...

我已将 bundleID com.bethegame.app1 和 com.bethegame.app2 添加到 LinkedIn 移动应用,并将 app1 和 app2 添加为 LinkedIn iOS 移动应用的后缀。

这是每个应用程序的 plist 中的内容...

        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>CFBundleURLName</key>
        <string>com.bethegame.app1</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>app1</string>
        </array>
    </dict>
    <dict>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>fb123456789012345</string>
        </array>
        <key>FacebookUrlSchemeSuffix</key>
        <string>app1</string>
    </dict>
    <dict>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>CFBundleURLName</key>
        <string>com.bethegame.app1</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>li1234567-app1</string>
        </array>
        <key>LISuffix</key>
        <string>app1</string>
    </dict>

就像我说的 FB 工作,虽然 'FacebookUrlSchemeSuffix' 被记录,LinkedIn 'LISuffix' 不是?

4

1 回答 1

1

要支持多个 iOS 应用共享单个 LinkedIn 应用,请转到您的 LinkedIn 开发人员帐户,找到您的应用并转到移动设置部分。在 iOS 设置部分下添加必要的 iOS Bundle Identifiers 和 iOS URL Scheme Suffixes。记下该屏幕上显示的应用程序 ID。

在 Xcode 中,打开项目的 info.plist 文件并添加以下内容:

<key>LIAppId</key>
<string>{LinkedInAppId}</string>
<key>LISuffix</key>
<string>{suffix}</string>

并将以下内容放入 CFBundleURLTypes:

<dict>
    <key>CFBundleURLName</key>
    <string>li{LinkedInAppId}</string>
    <key>CFBundleURLSchemes</key>
    <array>
        <string>li{LinkedInAppId}-{suffix}</string>
    </array>
</dict>

将 {LinkedInAppId} 替换为您刚刚记下的应用程序 ID,并将 {suffix} 替换为您刚刚在开发者网站上添加的那个。

于 2016-07-08T19:32:48.980 回答