As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
users.lookup(criteria, new KinveyUserListCallback()
but still i am getting invalid synatx as error...
1 Comment
A
AmarT
said
over 9 years ago
for anyone having the same problem
UserLookup will only return a limited subset of fields on the user object, so instead you can just query through the User api directly. Note UserLookup is meant to be used to preserve the privacy of users, so we limit the accessible fields on purpose.
Try:
Query q = new Query().equals("email", myEmail"); myClient.user().retrieve(q, new KinveyListCallback(){ ... }
AmarT
AsyncUserDiscovery users = Splash.mKinveyClient.userDiscovery();
UserLookup criteria = users.userLookup();
criteria.set("type","employee");
users.lookup(criteria, new KinveyUserListCallback()
but still i am getting invalid synatx as error...