Getting application id and client key from parse server

0

I'm trying to use the parse server to perform user registration and login for an Android application, but I do not know where to get the application and client key needed for the code below:

public class ParseApplication extends Application {

@Override
public void onCreate() {
    super.onCreate();

    Parse.initialize(this, "application id", "client key");

    ParseUser.enableAutomaticUser();
    ParseACL defaultACL = new ParseACL();

    defaultACL.setPublicReadAccess(true);

    ParseACL.setDefaultACL(defaultACL, true);
}

I searched the Back4App site inside the Dashboard parse, but I did not find it at all, could anyone explain exactly where that information is?

    
asked by anonymous 12.02.2017 / 02:28

1 answer

0

You have to create a project after going to

After core setinfgs and server

Here is the app id and client key

    
22.02.2017 / 22:38