0
I’m trying to use parse server to register and login for an Android application, but I don’t know where to get the application and client key required 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 couldn’t find it at all, someone could explain exactly where this information is?
I believe you receive your 'key' and 'application id' after registering on the site.
– Icaro
@I have registered on the site and created a parse app, but I still can’t find any tab that has this information
– Erick
don’t need to pay first?
– Icaro
@Icaro thought it was free
– Erick
There’s an area there that says it’s free - https://www.back4app.com/pricing
– Icaro