thiagolocatelli / parse4j

Java Library to deal with Parse (parse.com) REST API
http://thiagolocatelli.github.io/parse4j
143 stars 117 forks source link

ParseUser.signUpInBackground, ParseUser.loginInBackground and ParseUser.logOut are not implemented #88

Open lxknvlk opened 6 years ago

lxknvlk commented 6 years ago

This is what there is:

public void signUpInBackground(SignUpCallback callback) {
}

public static void loginInBackground(String username, String password, LoginCallback callback) {
}

empty methods.

SeloSlav commented 6 years ago

Yeah I encountered this while building an app, not realizing they were not implemented. You can't currently store sessions on a Java web app (like Springboot) using Parse (and I don't think the devs here have or will be working on it anytime soon). You may have to use the Javascript SDK instead of Java unless you build these methods yourself, unfortunately. I wouldn't know how at the moment, nor have the time.