Custom Column Parse Query
I am using Parse as back-end for my Android Application.I have created two custom columns in the User Class.Now I want my application user to signup with my application.I am unable
Solution 1:
Directly from the Parse Docs:
ParseUseruser=newParseUser();
user.setUsername("my name");
user.setPassword("my pass");
user.setEmail("email@example.com");
// other fields can be set just like with ParseObject
user.put("phone", "650-253-0000");
user.signUpInBackground(newSignUpCallback() {
publicvoiddone(ParseException e) {
if (e == null) {
// Hooray! Let them use the app now.
} else {
// Sign up didn't succeed. Look at the ParseException// to figure out what went wrong
}
}
});
I suggest you read the Parse docs very thoroughly - most anything you will want to do with the service will be somewhere in the docs, they are very good.
Post a Comment for "Custom Column Parse Query"