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.
I am fetching a user using "lookupByFacebookIDBlocking" (this is a workaround until previous question is answered) and have managed to get the user that I added. The problem is that all of the data that I put in using "user.put(KEY, VALUE)" is missing. I keep getting null values. The only data that is appearing is the username, Id, and facebook info. Here is the code snippit I use to fetch the user data:
I've made sure to update the user and I can see the data in the backend, but when I try to access user.get(USER_NAME), I get null but I should get "sha". I printed out the user and this is what I see:
Ebrahim Behbahani
User[] results = users.lookupByFacebookIDBlocking(iFriend.getId()).execute();
Gdx.app.log(TAG, "received "+ results[0].get(USER_NAME));//Returns null
Is the data inserted using put restricted?