https://firebase.google.com/docs/cloud-messaging/unity/upstream?hl=ko
I am following the next page. I can't use Send. What should I do?
Firebase.Messaging.Message message;
message.To = SENDER_ID + "@fcm.googleapis.com";
message.MessageId = get_unique_message_id();
message.Data("my_message", "Hello World");
message.Data("my_action", "SAY HELLO");
message.TimeToLive = kTimetoLive;
Firebase.Messaging.FirebaseMessaging.Send(message);
When I asked ChatGPT, they told me to use SendAsync, but there is no such command. So I'm trying to send it by Post, but it's not easy. It looks like I need to be authenticated, but no matter how much I look at the documentation, I'm not familiar with the implementation of Google Authentication.