Firebase会为我的ID列表返回空值

时间:2016-10-17 12:48:07

标签: c# firebase firebase-realtime-database

到目前为止,Firebase按预期交付了我的资源,突然它返回一个空值列表和" true"值。

有没有人遇到过这种行为?

我正在使用C#和Firesharp库。 我的请求看起来像这样:

await Client.GetAsync("runningEvents/crawledIds");

Fiddler中的http请求如下所示:

GET https://sportsevents-56d89.firebaseio.com/runningEvents/crawledIds.json?auth=XXX

您可以查看此链接下的数据:https://sportsevents-56d89.firebaseio.com/runningEvents/crawledIds.json

所以请求对我来说似乎是正确的。

这就是我的数据在Firebase中的样子(自从它工作以来没有改变,只保留添加ID): My data in Firebase

这就是响应的样子。在列表的下方还有" true"值。我需要的是显然的身份证号码 That is what the response looks like. Further down the list there are also "true" values. What I need though are the id numbers obviously

1 个答案:

答案 0 :(得分:0)

我找到了一个解决方法,我不知道为什么,有点像。

通过插入这样的值..

Insert a value

响应再次生效(我现在必须过滤掉所有非数字值,如果它不仅仅是我消耗数据,这会很糟糕)

问题仍然存在:这对任何人都有意义吗? 还有一个问题:为什么要默默地投票给这个问题?!

Working data again