Getting application id and client key from parse server

Asked

Viewed 110 times

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.

  • @I have registered on the site and created a parse app, but I still can’t find any tab that has this information

  • don’t need to pay first?

  • @Icaro thought it was free

  • There’s an area there that says it’s free - https://www.back4app.com/pricing

1 answer

0

Voce has to create a project later in featuringinserir a descrição da imagem aqui

then core setinfgs and server

here is the app id and client key inserir a descrição da imagem aqui

Browser other questions tagged

You are not signed in. Login or sign up in order to post.