I was unable to find anything in the FCM documentation that answers my question -- the documentation doesn't explicitly say either way. My question is:
Can I create and send a topic message to FCM from an iOS or Android client?
What I'd like to do is have the client create a topic message, and have FCM send notifications to all subscribers of that topic. I was hoping to accomplish this without creating an actual FCM server.
Thanks!
EDIT: I don't think I was clear in my original question. I know how to subscribe to a topic, and I'm well aware that when I subscribe to a topic, that topic will be created if it doesn't already exist.
I want to send a message to a topic from a client. I'm looking for functionality along the lines as
FIRMessaging.messaging().send(toTopic: "/topics/example")
I'm asking if such functionality exists.