FirebaseRemoteConfigFetchThrottledException? #AskFirebase

时间:2017-05-05 13:01:53

标签: exception firebase firebase-remote-config

何时/何地“FirebaseRemoteConfigFetchThrottledException”被抛出?

不幸的是,我们通过将RemoteConfig保持在开发人员模式来启动我们的应用程序。我们的一个应用程序工作正常,但另一个应用程序经常抛出此异常:

com.google.firebase.remoteconfig.FirebaseRemoteConfigFetchThrottledException
                                       at com.google.firebase.remoteconfig.FirebaseRemoteConfig.zza(Unknown Source)
                                       at com.google.firebase.remoteconfig.FirebaseRemoteConfig$1.zza(Unknown Source)
                                       at com.google.firebase.remoteconfig.FirebaseRemoteConfig$1.onResult(Unknown Source)
                                       at com.google.android.gms.internal.zzpt$zza.zzb(Unknown Source)
                                       at com.google.android.gms.internal.zzpt$zza.handleMessage(Unknown Source)
                                       at android.os.Handler.dispatchMessage(Handler.java:102)
                                       at android.os.Looper.loop(Looper.java:148)
                                       at android.app.ActivityThread.main(ActivityThread.java:5417)
                                       at java.lang.reflect.Method.invoke(Native Method)
                                       at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
                                       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)

1 个答案:

答案 0 :(得分:14)

这意味着您试图过于频繁地从远程配置服务中获取值,并且您受到限制(无论是客户端还是服务本身)。

如果你想避免将来发生这种情况,我建议使用不超过2小时的缓存过期时间(老实说,你可能很好地坚持默认的12小时)。