获取Firebase中的唯一推送ID

时间:2016-04-09 21:18:27

标签: android firebase push unique

场景是:json对象从其他api上传,并由Android应用程序访问。

Isuue:每次上传时,对象都存储在唯一的推送ID下。这是可变的,在接收端不知道。所以完整的路径是未知的。

在代码的给定部分:

    mRootRef = new Firebase("https://solvewa2y.firebaseio.com");
    Firebase messagesRef=mRootRef.child(postId);

我需要用一些东西替换postId,这样我就可以存储对象而不管唯一的id或每次获取唯一id的方法

1 个答案:

答案 0 :(得分:7)

答案很简单。在找到这个答案here

之前,我一直在努力寻找一个使用eventlisteners的解决方案
 //Create new reference        calling push creates the unique key in firebase database but has no data yet
 DatabaseReference mypostref = databaseRef.push();

 //Use the new reference to add the data
 mypostref.setValue(data);

 //Call getKey on the ref - you must have 'key' in your data class
 String mypostref.getKey());