$ curl -X GET \
-H "X-Parse-Application-Id: myAppId" \
-H "X-Parse-Master-Key: myMasterKey" \
http://localhost:1337/parse/installations/?count=1
{
"results": [
...my installations...
]
}
$ curl -X GET \
-H "X-Parse-Application-Id: myAppId" \
-H "X-Parse-Master-Key: myMasterKey" \
-H "X-Parse-REST-API-Key: myRestApiKey" \
https://api.parse.com/1/installations/?count=1
{
"results": [
...my installations...
],
count: 5
}
Environment Setup
Steps to reproduce
This is what I got:
But what I expected is like current Parse REST API when I use the command below:
It response with installations count like this:
Is this a bug?