
I am trying to send push notification through APNS. I tried sending message from apple's push service console and it showing message. But when i try to send message through appwrite i am getting this Failed sending to target "DeviceToken" with error: The registration token is not a valid FCM registration token In the photo it should have shown APNS in provider but is not showing. This is the code: func loginUser(email: String, password: String) async -> RequestStatus { do { _ = try await account.createEmailPasswordSession(email: email, password: password)
guard let token = UserDefaults.standard.string(forKey: "apnsToken") else {
return .error("Failed to get APNS token")
}
guard let target = try? await account.createPushTarget(
targetId: ID.unique(),
identifier: token
) else {
return .error("Failed to create push target")
}
UserDefaults.standard.set(target.id, forKey: "targetId")
DispatchQueue.main.async {
self.isLoggedIn = true
UserDefaults.standard.set(true, forKey: "isLoggedIn")
}
return .success
} catch {
return .error(error.localizedDescription)
}
}
Recommended threads
- iOS Sign in with Apple error: signup not...
I can’t get Sign in with Apple to work for my iOS app. I followed the instructions on https://appwrite.io/integrations/oauth-apple very closely and multiple tim...
- Swift: Create Collection
I and not finding a reference to Creating/Reading/Updating or Deleting collections from the Swift SDK. We would like to be able to see if a collection exists on...
- Custom document types in Swift
How would I create a protocol to conform to Models.Document?
