Firebase远程配置A / B测试草稿不提供iOS上的值

时间:2018-02-15 11:08:42

标签: ios swift firebase ab-testing firebase-remote-config

我在Firebase上创建了一个AB测试(尚未发布)并添加了测试设备的令牌。 但是,提供的密钥并不是值得的。

由于AB测试是在测试版中,因此Firebase方面的错误是它在测试设备上不起作用吗?

let remoteConfig = RemoteConfig.remoteConfig()
remoteConfig.fetch(withExpirationDuration: 0) { status, _ in
        if status == RemoteConfigFetchStatus.success {
            remoteConfig.activateFetched()
            let ab_test_value = remoteConfig.configValue(forKey: "ab_test_key").stringValue
            print(ab_test_value)
 }}

ab_test_value将变为空。

1 个答案:

答案 0 :(得分:2)

尝试此操作可能会在响应到来时释放您的变量

var remoteConfig:FIRRemoteConfig?

///

var expirationDuration = 43200;
// If in developer mode cacheExpiration is set to 0 so each fetch will retrieve values from
// the server.
if (remoteConfig?.configSettings.isDeveloperModeEnabled)!
{
     expirationDuration = 0;
}


self.remoteConfig?.fetch(withExpirationDuration: TimeInterval(expirationDuration))
{
    (status, error) -> Void in
    if status == .success
    {
        print("Config fetched!")
         self.remoteConfig?.activateFetched()
    }
    else
    {
        print("Config not fetched")
        print("Error \(error!.localizedDescription)")

       // return
    }

    self.displayWelcome()

    }

}