如何从Firebase获取其他用户数据?

时间:2019-04-29 17:30:59

标签: android firebase firebase-authentication

我想要当用户单击到管理员配置文件时,用户可以看到管理员信息。 我使用currentUser来获取已经在应用程序中登录的当前用户的ID。

我想知道如何获取另一个用户数据。

    String currentuser = FirebaseAuth.getInstance().getCurrentUser().getUid();


    // init firebase database
    mUserDatabaseReference = FirebaseDatabase.getInstance().getReference("Users");

    mUserDatabaseReference.child(currentuser).addValueEventListener(new ValueEventListener() {
        @Override
        public void onDataChange(@NonNull DataSnapshot dataSnapshot) {


            // here using Picasso for get the image url and set in ImageView
            String imageUrl = dataSnapshot.child("profile_pic").getValue().toString();
            Picasso.with(AboutCompany_for_users.this).load(imageUrl).into(companyPhoto);


            String name = dataSnapshot.child("name").getValue().toString();
            String email = dataSnapshot.child("email").getValue().toString();
            String phone = dataSnapshot.child("mobile").getValue().toString();
            String busesNumbers = dataSnapshot.child("buses_numbers").getValue().toString();
            String lineName = dataSnapshot.child("bus_line").getValue().toString();


            // here we get the data from
            companyName.setText(name);
            companyEmail.setText(email);
            companyPhone.setText(phone);
            companyBusesNumbers.setText(busesNumbers);
            companyLineName.setText(lineName);

        }

        @Override
        public void onCancelled(@NonNull DatabaseError databaseError) {

        }
    });

    driversInformations.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent driversInfo = new Intent(AboutCompany_for_users.this, CompanyDrivers.class);
            startActivity(driversInfo);
        }
    });

我希望用户单击管理员个人资料时显示管理员信息而非当前用户信息

3 个答案:

答案 0 :(得分:0)

您无法通过客户端代码在Firebase身份验证中查询其他用户帐户。您将必须

  1. 将其他用户的数据存储在数据库中,并查询该数据库。
  2. 调用一些后端代码,并使用Firebase Admin SDK进行查询,然后将其返回给客户端。

通常人们选择选项1。

答案 1 :(得分:0)

您可以创建一个Firebase cloud functions,并且可以从您的Android应用中调用该函数 接下来,在该功能下,您可以检索相应用户的数据并将其结果返回到您的Android应用。

答案 2 :(得分:0)

创建云功能并使用Firebase Admin SDK。

您可以通过uid或电子邮件或电话号码获取其他用户数据。

您最多可以列出1000个用户。

如果您使用node.js创建Cloud Functions,则代码如下。

// get another user data by uid
exports.getUser = functions.https.onCall(async (data, context) => {
  try {
    // if you want to deny unauthorized user
    // - context.auth.token.xxx is customClaims. (if you use)
    // if (context.auth || context.auth.uid || context.auth.token.xxx) {
    //   return Promise.reject("unauthorized");
    // }

    const user = await admin.auth().getUser(data.uid);
    return {
      displayName: user.displayName,
      email: user.email,
      photoURL: user.photoURL
    };
  } catch (error) {
    // If user does not exist
    if (error.code === "auth/user-not-found") {
      return {};
    }
    throw error;
  }
});

请参阅: