mirror of
https://github.com/appwrite/appwrite
synced 2026-05-19 23:18:40 +00:00
407 B
407 B
import Appwrite
let client = Client() .setEndpoint("https://cloud.appwrite.io/v1") // Your API Endpoint .setProject("<YOUR_PROJECT_ID>") // Your project ID .setJWT("<YOUR_JWT>") // Your secret JSON Web Token
let messaging = Messaging(client)
let subscriber = try await messaging.createSubscriber( topicId: "<TOPIC_ID>", subscriberId: "<SUBSCRIBER_ID>", targetId: "<TARGET_ID>" )