Hello, Backendless!
I want to send a push notification along with a message from my iOS app to the iOS app of a specific user who is supposed to receive this message (the devices are registered in the DeviceRegistration table).
I don’t know the registered deviceId of the user who should receive the message (and in my opinion, I shouldn’t have to). I only know the user’s id, and I believe that should be enough.
Importantly, push notifications are set up and working fine, but only from the Console. There are
templates for all devices and for a specific segment (user.objectId = ‘userIdhere’), and both works correctly from Console.
Now I’m trying to send a message + push (messaging works fine). Here is my swift code:
func publish(
toUserId: String,
message: MessageServerModel
) async throws -> String {
return try await withCheckedThrowingContinuation { continuation in
let publishOptions = PublishOptions()
publishOptions.addHeader(name: "ios-alert-title", value: "Message")
publishOptions.addHeader(name: "ios-alert-body", value: message.message ?? "")
let deliveryOptions = DeliveryOptions()
deliveryOptions.segmentQuery = "user.objectId = '\(toUserId)'"
// deliveryOptions.pushSinglecast = [deviceId] /// I try to hardcode deviceId - not working too, although I don’t like this approach.
Backendless.shared.messaging.publish(
channelName: AppSettings.messagingChanel,
message: message,
publishOptions: publishOptions,
deliveryOptions: deliveryOptions,
responseHandler: { messageStatus in
guard let validStatus = messageStatus.status else { return }
continuation.resume(with: .success(validStatus))
}, errorHandler: { fault in
print("Error: \(fault.message ?? "")")
continuation.resume(throwing: AppError(.backendless))
})
}
}
What am I missing?
P.S. I also want to point out that the iOS documentation for push notifications is broken and redirects to the main page.