Connect to an Atlas App Services backend - Swift SDK
Overview
The App client is the interface to the Atlas App Services backend. It provides access to the authentication functionality, functions, and sync management.
Access the App Client
Pass the App ID for your App, which you can find in the Realm UI.
let app = App(id: YOUR_APP_SERVICES_APP_ID) // replace YOUR_APP_SERVICES_APP_ID with your App ID
Configuration
You can pass a configuration object to RealmApp
:
let configuration = AppConfiguration( baseURL: "https://realm.mongodb.com", // Custom base URL transport: nil, // Custom RLMNetworkTransportProtocol localAppName: "My App", localAppVersion: "3.14.159", defaultRequestTimeoutMS: 30000 ) let app = App(id: "my-app-services-app-id", configuration: configuration)