Hi Shephertz,
is it possible to fetch additional data with calling the authenticate function? I implemented the following and no json object is getting fetched:
Query query = QueryBuilder.Build("email", email, Operator.EQUALS);
userService.SetQuery("EmailVerifications", query);
userService.Authenticate(username, password, new LoginCallBack(this));
public class LoginCallBack : App42CallBack {
public void OnSuccess(object response){
User user = (User)response;
for(int i=0; i<user.GetJsonDocList().Count; i++)
{
Debug.Log("json doc is = "+ user.GetJsonDocList()[i].GetJsonDoc());
}
}
public void OnException(Exception e){
}
}
cheers,
armin