我在哪里可以为 Bluemix Advanced Mobile Access 服务中的 iOS 应用程序指定包 ID?

Where can I specify bundle ID for iOS app in Bluemix Advanced Mobile Access service?

我在 Bluemix 上为我现有的 Xcode 项目创建了 MobileFirst 入门服务。有谁知道在哪里为我的 iOS 应用程序指定捆绑包 ID? 几个月前,我可以通过为高级移动访问 (AMA) 服务中的自定义身份验证创建新的移动客户端来指定它。但是现在,配置自定义身份验证时缺少创建移动客户端的步骤,我不知道还有什么地方可以放置捆绑包 ID。

我们最近修改了安全服务(以前称为 Advanced Mobile Access,现在更名为 Mobile Client Access)的设置方式。请注意 the blog post detailing the update.

中的以下内容

You also no longer need to register your app’s bundle identifier with the Mobile Client Access service. In the previous version of Advanced Mobile Access, you had to register your iOS app’s bundle identifier before you could take advantage of authentication, logging, or operational analytics. With the Mobile Client Access service, this is no longer required, and it’s easier to get set up and running. Just connect your app and start working:

Objective-C 对于 iOS

// initialize SDK with IBM Bluemix application ID and route
IMFClient *imfClient = [IMFClient sharedInstance];
[imfClient initializeWithBackendRoute:@"<APPLICATION_ROUTE>" backendGUID:@"<APPLICATION_ID>"];

(Swift 也可用)