Android Question Firebase Database

hi guys i learned firebase database from @fredo its great tutorial. simple but amazing!
but i just wanna ask a little thing here.

POST:
Sub Button2_Click 'POST
    Dim mapToSend As Map : mapToSend.Initialize
    mapToSend.Put("response", EditText1.Text)
  
    Starter.fdb.POST(EditText2.Text, mapToSend, "xyz POST-Test")
End Sub

that is my code for POST method to the database in firebase and the database generate a new byte field name, but i just want the response field without the byte field when i do some post method. HOW?
 

Attachments

  • fdb.PNG
    fdb.PNG
    11.1 KB · Views: 133
Top