有什么方法可以在Firebase中检索Google cloudAnchorId

时间:2019-03-27 05:11:13

标签: firebase-realtime-database google-cloud-platform unityscript

我想团结一致地使用Google Cloud Anchor技术开发移动应用。 我使用一种方法来创建锚点。运行create方法后如何检索cloudAnchorId。

public static AsyncTask<CloudAnchorResult> CreateCloudAnchor(Anchor anchor)
    {
        return CloudServiceManager.Instance.CreateCloudAnchor(anchor);
    }

我已经添加了一些代码,但是仍然无法正常工作。我应该把什么作为createCloudAnchor方法的参数?

DatabaseReference referenceAnchorId = FirebaseDatabase.DefaultInstance.RootReference.Child("room/");
    string CloudAnchorId = XPSession.CreateCloudAnchor(GoogleARCore.Anchor).CloudId;
    referenceAnchorId.Push().SetRawJsonValueAsync(CloudAnchorId);

0 个答案:

没有答案