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 know the access token is correct since I can access data directly from my Facebook account. After I login I check the user to see if the users data has been updated, but it is just empty: "{}". Later on in the code I try to save some parameters to the user using "user.put(key , value)" and after that I call
user.updateBlocking().execute();
but I get a Nullpointer exception: "No Active User - please login a user by calling myClient.user().login( ... ) before retrying this request." Which doesn't make sense since I have not signed the user out and the user is not null. Is there something that I am missing?
1 Comment
E
Edward
said
over 9 years ago
For the blocking API, you have to call `execute()` on all methods--
Ebrahim Behbahani
mKinveyClient.user().loginFacebookBlocking(accessToken);
I know the access token is correct since I can access data directly from my Facebook account. After I login I check the user to see if the users data has been updated, but it is just empty: "{}". Later on in the code I try to save some parameters to the user using "user.put(key , value)" and after that I call
user.updateBlocking().execute();
but I get a Nullpointer exception: "No Active User - please login a user by calling myClient.user().login( ... ) before retrying this request." Which doesn't make sense since I have not signed the user out and the user is not null. Is there something that I am missing?