如何解决如何从Firebase.auth.currentUser Android Kotlin获取刷新令牌
关于如何从import java.util.ArrayList;
import java.util.List;
import java.util.function.Function;
public class TestGeneric {
// I want to create a list of Functions,and these Functions can have different input/output types than one another.
private List<Function<? extends Number,? extends Number>> functions;
public TestGeneric() {
functions = new ArrayList<>();
}
public void addFunction(Function<? extends Number,? extends Number> function) {
functions.add(function);
}
public void main(String[] args) {
TestGeneric testGeneric = new TestGeneric();
Function<Integer,Integer> hundredTimes = new Function<Integer,Integer>() {
@Override
public Integer apply(Integer integer) {
return integer * 100;
}
};
functions.add(hundredTimes);
Function<Double,Double> tenTimes = new Function<Double,Double>() {
@Override
public Double apply(Double o) {
return 10.0 * o;
}
};
functions.add(tenTimes);
System.out.println(functions.get(0).apply(Integer.valueOf(10)));
}
}
获取刷新令牌的问题,我犹豫不决,但似乎找不到方法。
在iOS上,等效值为FirebaseAuth
。非常感谢您的帮助。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。