Anonymous user in Realm Mobile Platform

2019-04-10 09:30发布

Can I connect to a remote Realm without having to login?

In Swift, the only way to create a synchronizable Realm is through the syncConfiguration property of a Realm.Configuration. Is there a method for getting an anonymous User so that anyone can connect to the remote Realm?

2条回答
一夜七次
2楼-- · 2019-04-10 10:20

Can I connect to a remote Realm without having to login?

No, you always need to be authenticated.

Is there a method for getting an anonymous User so that anyone can connect to the remote Realm?

Yes, via SyncCredentials.anonymous().

查看更多
ら.Afraid
3楼-- · 2019-04-10 10:25

This is now possible in Realm Cloud. Here's how I am doing it in Swift:

if let user = SyncUser.current {
  //--== User available ==--
  let config = Realm.Configuration(syncConfiguration: SyncConfiguration(user: user, realmURL: "..."))

  Realm.Configuration.defaultConfiguration = config
  let _ = try! Realm()

}else{
  //--== No User; Connect Anonymously ==--
  let credentials = SyncCredentials.anonymous()

  SyncUser.logIn(with: credentials, server: "...") { user, error in
    DispatchQueue.main.async {
      if let user = user {
        let config = Realm.Configuration(syncConfiguration: SyncConfiguration(user: user, realmURL: "..."))
        Realm.Configuration.defaultConfiguration = config
        let _ = try! Realm()

        }else{
          //Error...
        }
      }
    }
  }
}

Good luck!

查看更多
登录 后发表回答