gpt4 book ai didi

android - 如何从 android 中的解析用户获取 emailVerified?

转载 作者:行者123 更新时间:2023-11-30 01:43:51 25 4
gpt4 key购买 nike

我很困惑;如何从 parse.com USER 数据库中获取 boolean 值?我想要实现的是:

if(The user who is trying to log in right now has not verified his email){
Toast.makeText(getApplicationContext(),"Verify your email please",Toast.LENGTH_SHORT).show();
}

所以,基本上,我的问题是:如何获取用户的 boolean 值?

最佳答案

您可以注意到 Parse 中的“_User”类有一个 boolean 列“emailVerified”。您根据需要读取“emailVerified”的值。

ParseUser user = ParseUser.getCurrentUser();
Boolean isVerified = user.getBoolean("emailVerified");

关于android - 如何从 android 中的解析用户获取 emailVerified?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34006345/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com