Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个使用 Firebase Cloud Messaging 的 Android 应用程序。
每当生成新令牌时,都会调用扩展 FirebaseInstanceIdService 的类的 onTokenRefresh() 函数。
但是我注意到第一次生成令牌时,没有调用这个函数。我想将第一个令牌发送到我的服务器。我该如何实施?
onTokenRefresh()只是在您有互联网连接时调用,在从FCM返回令牌后,您可以将其发送到您的服务器
见https://stackoverflow.com/a/37546558/2032955