使用 AWS Pinpoint 从 iOS 发送推送通知
Send push notification from iOS using AWS Pinpoint
我正在使用 AWS SDK 向使用直接消息的设备发送推送通知。我能够使用 AmazonPinpointClient(creds).sendMessages(sendMessagesRequest)
在 Android 上发送消息。
除了 AmazonPinpointClient
.
,我可以在 iOS 上找到所有等效的 classes
在 iOS 上使用的相应 class 是什么?
您使用的 AWS SDK 不是 Pinpoint 移动 SDK。 (可能你正在使用 Pinpoint Java SDK)
没有AndroidSDK或iOSSDK有sendMessages方法。
Pinpoint Mobile SDK 只能发送事件和更新端点。
https://docs.aws.amazon.com/pinpoint/latest/developerguide/integrate-supported-sdks.html
我找到 class 发送直接消息:
let sendMessagesRequest = AWSPinpointTargetingSendMessagesRequest()!
sendMessagesRequest.applicationId = appId
sendMessagesRequest.messageRequest = messageRequest
AWSPinpointTargeting.default().sendMessages(sendMessagesRequest){ response, error in
...
}
希望它能节省一些人的时间。
我正在使用 AWS SDK 向使用直接消息的设备发送推送通知。我能够使用 AmazonPinpointClient(creds).sendMessages(sendMessagesRequest)
在 Android 上发送消息。
除了 AmazonPinpointClient
.
在 iOS 上使用的相应 class 是什么?
您使用的 AWS SDK 不是 Pinpoint 移动 SDK。 (可能你正在使用 Pinpoint Java SDK)
没有AndroidSDK或iOSSDK有sendMessages方法。
Pinpoint Mobile SDK 只能发送事件和更新端点。
https://docs.aws.amazon.com/pinpoint/latest/developerguide/integrate-supported-sdks.html
我找到 class 发送直接消息:
let sendMessagesRequest = AWSPinpointTargetingSendMessagesRequest()!
sendMessagesRequest.applicationId = appId
sendMessagesRequest.messageRequest = messageRequest
AWSPinpointTargeting.default().sendMessages(sendMessagesRequest){ response, error in
...
}
希望它能节省一些人的时间。