0

我目前无法使用 AWS Mobile Helper 在 Swift 中调用 lambda。

我已成功配置我的项目以使用 Cognito 用户池和 Cognito 联合身份识别用户。

但是现在调用 lambda 函数会导致崩溃: terminating with uncaught exception of type NSException

崩溃前有以下日志:

AWSiOSSDK v2.4.11 [Debug] AWSInfo.m line:122 | -[AWSServiceInfo     initWithInfoDictionary:checkRegion:] | Couldn't read the region configuration from Info.plist for the client. Please check your `Info.plist` if you are providing the SDK configuration values through `Info.plist`.
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'The service configuration is `nil`. You need to configure `Info.plist` or set `defaultServiceConfiguration` before using this method.'

这是代码:

let lambda = AWSLambda.defaultLambda()

lambda.invoke(myRequest, completionHandler: {
            (myAnswer: AWSLambdaInvocationResponse?, error: NSError?) in

   print("ERROR HERE: \(error)")
   let payload = myAnswer?.payload
   print("PAYLOAD HERE: \(payload)")

})
4

1 回答 1

1

如果您使用的是 Mobile Hub 或 Mobile Hub Helper,您应该使用它提供的类。当您实例化 CloudLogic 单例时,它会设置服务配置。

因此,您应该使用 AWSCloudLogic.defaultCloudLogic 而不是 AWSLambda.defaultLambda,它的方法将在实例化后立即管理权限问题。

您可以通过使用移动集线器下载使用云逻辑的示例应用程序来获取示例。

我整理了一张移动集线器的简图

移动集线器图

于 2016-11-17T04:51:46.170 回答