Hello I am working on android app in which I am using parse cloud. I have signUp into the system then after I am trying to fetch data from parse.
But I am getting an exception everytime
com.parse.ParseRequest$ParseRequestException: invalid session token
String userName = ParseUser.getCurrentUser().getUsername();
ParseQuery<ParseObject> parseQuery = ParseQuery.getQuery("users");
parseQuery.findInBackground(new FindCallback<ParseObject>() {
@Override
public void done(List<ParseObject> list, ParseException parseException) {
}
});
How we can resolve this problem.