Hi, I am able to send push notifications successfully to a device. However, I am trying to get a list of users registered with my account using the http://apps.ionic.io/api/v1/app/APP_ID/users/info endpoint. I am sending a api request successfully, but for some reason it is resulting in no results. Any ideas?
var identifyUser = function() {
var auth = fb.getAuth();
var user = $ionicUser.get();
if (!user.user_id) {
user.user_id = auth.uid;
}
angular.extend(user, {
uid: auth.uid
});