Firebase Cloud Firestore возвращает нулевую ссылку - PullRequest
0 голосов
/ 08 июля 2019

Итак, я создаю профиль пользователя firebase в firestore, он будет сохранять данные пользователей, такие как их имя, адрес электронной почты, номер телефона и их вознаграждение.Пользователь вошел в систему с помощью Google Sign-in.

Так я записываю данные в firestore.

 private void addNewUser() {
    FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
    if (user != null) {
        String uid = user.getUid();
        for (UserInfo profile : user.getProviderData()) {
            // Id of the provider (ex: google.com)
            String providerId = profile.getProviderId();

            // UID specific to the provider

            // Name, email address, and profile photo Url
            String name = profile.getDisplayName();
            String email = profile.getEmail();


            Map<String, Object> newUser = new HashMap<>();
            newUser.put("Nama", name);
            newUser.put("Email", email);




            // Add a new document with a generated ID
            db.collection("users").document(uid).set(newUser);
                        }


        }


    }

И это работает.

Но когда я пытаюсь получить данные, используя Document Reference

    @Override
public void onStart() {
    super.onStart();
    // Check if user is signed in (non-null) and update UI accordingly.
    FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
    if (user != null) {
        String curUser = user.getUid();
        DocumentReference documentReference = db.document(curUser);
        documentReference.addSnapshotListener(this.getActivity(), new EventListener<DocumentSnapshot>() {
            @Override
            public void onEvent(@javax.annotation.Nullable DocumentSnapshot documentSnapshot, @javax.annotation.Nullable FirebaseFirestoreException e) {
                if (documentSnapshot.exists()) {
                    String userNama = documentSnapshot.getString(KEY_NAMA);
                    String userEmail = documentSnapshot.getString(KEY_EMAIL);

                    namaUser.setText(userNama);
                    emailUser.setText(userEmail);
                }
            }
        });




    } else {

        Intent intent = new Intent(Home.this.getActivity(), LoginActivity.class);
        startActivity(intent);


        }

    }

Ссылка на документ curUser в этом случае возвращает ноль.Я не знал, что я сделал не так.

1 Ответ

2 голосов
/ 08 июля 2019

Вам необходимо иметь название коллекции (users) в вашем DocumentReference

Изменение

DocumentReference documentReference = db.document(curUser);

до

DocumentReference documentReference = db.collection("users").document(curUser);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...