Search code examples
swiftrealmrealm-mobile-platform

Anonymous user in Realm Mobile Platform


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?


Solution

  • 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().