Firebase Admin SDK FirebaseAuthException:刷新访问令牌时出现意外错误

Firebase Admin SDK FirebaseAuthException : Unexpected error refreshing access token

我正在使用 Firebase Admin SDK 让注册用户访问我的 Spring 启动应用程序,前几天运行良好

UserRecord userRecord = FirebaseAuth.getInstance(FirebaseApp.getInstance()).getUserByPhoneNumber(phoneNumber);

但我突然收到这个 FirbaseAuthExcetpion

com.google.firebase.auth.FirebaseAuthException: Unknown error while making a remote service call: Unexpected error refreshing access token

你能帮我解决这个例外吗? 谢谢

问题是 com.google.guava 库的依赖冲突,在我的例子中 Swagger 一直在使用旧版本的 Guava,所以我不得不为 Swagger Guava 库添加排除项

 <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>${springfox-swagger2.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>com.google.guava</groupId>
                    <artifactId>guava</artifactId>
                </exclusion>
            </exclusions>
        </dependency>