小编Ami*_*tel的帖子

我正在使用 Firebase Apple 登录进行用户登录,但我不确定将 https://myapp.firebaseapp.com/__/auth/handler 放在哪里?

我正在使用 Firebase Apple 登录 Apple 进行用户登录,但我不确定将https://myapp.firebaseapp.com/__/auth/handler放在哪里

这是来自 Firebase 登录的文档。*要完成设置,请将此授权回调 URL 添加到 Apple Developer Console 中的应用程序配置中。可能需要其他步骤来向 Apple 验证此 Web 域的所有权。了解更多 * 了解更多将我带到这里。https://firebase.google.com/docs/auth/?authuser=0

我需要为移动反应本机应用程序执行此操作吗?

firebase react-native firebase-authentication sign-in-with-apple

7
推荐指数
1
解决办法
789
查看次数

Room Persistence 库 - 带 List<Video> 的嵌套对象、@Embedded 不起作用。

我有一个 VideoList 对象,我想使用房间库保存它,但是当我尝试将 @Embedded 与 public List list = null; 一起使用时 它给我以下错误: 错误:(23, 24) 错误:无法弄清楚如何将此字段保存到数据库中。您可以考虑为其添加类型转换器。

VideoList类如下。

@Entity
public class VideoList {


@PrimaryKey
public String id;

public String title;
public String viewType;
public Integer sortingOrder = null;
public String componentSlug;
public String endPoint = null;

@Embedded
public List<Video> list = null;
public boolean hidden = false; }




Any suggestions? 
Run Code Online (Sandbox Code Playgroud)

java database sqlite android android-database

5
推荐指数
1
解决办法
6830
查看次数