ktamas77 / firebase-php

Firebase PHP Client
792 stars 215 forks source link

How can i add order by and equalTo #58

Closed ithoangphuc closed 7 years ago

ithoangphuc commented 7 years ago

I use firebase-php of ktamas77. I try to get data with orderBy => 'data_id' (child) and equal to 'Test' but it report

"error" : "orderBy must be a valid JSON encoded path"

$test = $initFirebase->get('/notification',array('orderBy' => 'data_id', 'equalTo' => 220));

VMitin commented 7 years ago

Hey. You must paste the data_id in the double quotes. My examlpe: $fireBase->get(PUSH_PATH, array('orderBy' => '"status"', 'equalTo' => PENDING)

And don't forget put the ".indexOn" : "status" on the firebase rules